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