[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / MicroserviceData.java
diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java
new file mode 100644 (file)
index 0000000..91366ce
--- /dev/null
@@ -0,0 +1,146 @@
+/*-\r
+ * ================================================================================\r
+ * ECOMP Portal\r
+ * ================================================================================\r
+ * Copyright (C) 2017 AT&T Intellectual Property\r
+ * ================================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ================================================================================\r
+ */\r
+package org.openecomp.portalapp.portal.domain;\r
+\r
+import java.util.List;\r
+\r
+import javax.persistence.Column;\r
+import javax.persistence.GeneratedValue;\r
+import javax.persistence.GenerationType;\r
+import javax.persistence.Id;\r
+\r
+import org.openecomp.portalsdk.core.domain.support.DomainVo;\r
+\r
+public class MicroserviceData extends DomainVo {\r
+\r
+       private static final long serialVersionUID = 1L;\r
+\r
+       public MicroserviceData() {\r
+\r
+       }\r
+\r
+       private Long id;\r
+\r
+       private String name;\r
+\r
+       private String active;\r
+\r
+       private String desc;\r
+\r
+       private long appId;\r
+\r
+       private String url;\r
+\r
+       private String securityType;\r
+\r
+       private String username;\r
+\r
+       private String password;\r
+\r
+       private List<MicroserviceParameter> parameterList;\r
+\r
+       public Long getId() {\r
+               return id;\r
+       }\r
+\r
+       public void setId(Long id) {\r
+               this.id = id;\r
+       }\r
+\r
+       public String getName() {\r
+               return name;\r
+       }\r
+\r
+       public void setName(String name) {\r
+               this.name = name;\r
+       }\r
+\r
+       public String getActive() {\r
+               return active;\r
+       }\r
+\r
+       public void setActive(String active) {\r
+               this.active = active;\r
+       }\r
+\r
+       public String getDesc() {\r
+               return desc;\r
+       }\r
+\r
+       public void setDesc(String desc) {\r
+               this.desc = desc;\r
+       }\r
+\r
+       public long getAppId() {\r
+               return appId;\r
+       }\r
+\r
+       public void setAppId(long appId) {\r
+               this.appId = appId;\r
+       }\r
+\r
+       public String getUrl() {\r
+               return url;\r
+       }\r
+\r
+       public void setUrl(String url) {\r
+               this.url = url;\r
+       }\r
+\r
+       public String getSecurityType() {\r
+               return securityType;\r
+       }\r
+\r
+       public void setSecurityType(String securityType) {\r
+               this.securityType = securityType;\r
+       }\r
+\r
+       public String getUsername() {\r
+               return username;\r
+       }\r
+\r
+       public void setUsername(String username) {\r
+               this.username = username;\r
+       }\r
+\r
+       public String getPassword() {\r
+               return password;\r
+       }\r
+\r
+       public void setPassword(String password) {\r
+               this.password = password;\r
+       }\r
+\r
+       public List<MicroserviceParameter> getParameterList() {\r
+               return parameterList;\r
+       }\r
+\r
+       public void setParameterList(List<MicroserviceParameter> parameterList) {\r
+               this.parameterList = parameterList;\r
+       }\r
+\r
+       @Override\r
+       public String toString() {\r
+               return "MicroserviceData [id=" + id + ", name=" + name + ", desc=" + desc + ", appId=" + appId + ", url=" + url\r
+                               + ", securityType=" + securityType + ", username=" + username + ", password=" + password\r
+                               + ", parameterList=" + parameterList + "]";\r
+       }\r
+\r
+}\r