Merge "Reduce number of parameters in constructor"
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / ep / EpMicroservice.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.domain.db.ep;
42
43 import java.util.ArrayList;
44 import java.util.List;
45 import javax.persistence.CascadeType;
46 import javax.persistence.Column;
47 import javax.persistence.Entity;
48 import javax.persistence.FetchType;
49 import javax.persistence.GeneratedValue;
50 import javax.persistence.GenerationType;
51 import javax.persistence.Id;
52 import javax.persistence.Index;
53 import javax.persistence.JoinColumn;
54 import javax.persistence.ManyToMany;
55 import javax.persistence.ManyToOne;
56 import javax.persistence.OneToMany;
57 import javax.persistence.Table;
58 import javax.validation.Valid;
59 import javax.validation.constraints.Digits;
60 import javax.validation.constraints.Pattern;
61 import javax.validation.constraints.Size;
62 import lombok.AllArgsConstructor;
63 import lombok.Getter;
64 import lombok.NoArgsConstructor;
65 import lombok.Setter;
66 import lombok.ToString;
67 import org.hibernate.validator.constraints.SafeHtml;
68 import org.hibernate.validator.constraints.URL;
69 import org.onap.portal.domain.db.fn.FnApp;
70
71 /*
72 CREATE TABLE `ep_microservice` (
73         `id` int(11) NOT NULL AUTO_INCREMENT,
74         `name` varchar(50) DEFAULT NULL,
75         `description` varchar(50) DEFAULT NULL,
76         `appId` int(11) DEFAULT NULL,
77         `endpoint_url` varchar(200) DEFAULT NULL,
78         `security_type` varchar(50) DEFAULT NULL,
79         `username` varchar(50) DEFAULT NULL,
80         `password` varchar(50) NOT NULL,
81         `active` char(1) NOT NULL DEFAULT 'Y',
82         PRIMARY KEY (`id`),
83         KEY `FK_FN_APP_EP_MICROSERVICE` (`appId`),
84         CONSTRAINT `FK_FN_APP_EP_MICROSERVICE` FOREIGN KEY (`appId`) REFERENCES `fn_app` (`app_id`)
85         )
86 */
87
88 @Table(name = "ep_microservice", indexes = {
89         @Index(name = "FK_FN_APP_EP_MICROSERVICE", columnList = "app_Id")
90 })
91 @NoArgsConstructor
92 @AllArgsConstructor
93 @ToString
94 @Getter
95 @Setter
96 @Entity
97 public class EpMicroservice {
98        @Id
99        @GeneratedValue(strategy = GenerationType.AUTO)
100        @Column(name = "id", length = 11, nullable = false)
101        @Digits(integer = 11, fraction = 0)
102        private Long id;
103        @Column(name = "name", length = 50)
104        @Size(max = 50)
105        @SafeHtml
106        private String name;
107        @Column(name = "description", length = 50)
108        @Size(max = 50)
109        @SafeHtml
110        private String description;
111        @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
112        @JoinColumn(name = "app_Id")
113        @Valid
114        private FnApp appId;
115        @Column(name = "endpoint_url", length = 200)
116        @Size(max = 200)
117        @SafeHtml
118        //TODO URL
119        @URL
120        private String endpointUrl;
121        @Column(name = "security_type", length = 50)
122        @Size(max = 50)
123        @SafeHtml
124        private String securityType;
125        @Column(name = "username", length = 50)
126        @Size(max = 50)
127        @SafeHtml
128        private String username;
129        @Column(name = "password", length = 50, nullable = false)
130        @Size(max = 50)
131        @SafeHtml
132        private String password;
133        @Column(name = "active", length = 1, columnDefinition = "CHAR(1) DEFAULT 'Y'")
134        @Pattern(regexp = "[YNyn]")
135        @Size(max = 1)
136        @SafeHtml
137        private String active;
138        @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
139        private List<EpWidgetCatalog> epWidgetCatalogList = new ArrayList<>();
140        @OneToMany(
141                targetEntity = EpMicroserviceParameter.class,
142                mappedBy = "serviceId",
143                cascade = CascadeType.ALL,
144                fetch = FetchType.LAZY
145        )
146        private List<EpMicroserviceParameter> epMicroserviceParameters = new ArrayList<>();
147
148        public void copyOf(final EpMicroservice epMicroservice) {
149               this.id = epMicroservice.getId();
150               this.name = epMicroservice.getName();
151               this.description = epMicroservice.getDescription();
152               this.appId = epMicroservice.getAppId();
153               this.endpointUrl = epMicroservice.getEndpointUrl();
154               this.securityType = epMicroservice.getSecurityType();
155               this.username = epMicroservice.getUsername();
156               this.password = epMicroservice.getPassword();
157               this.active = epMicroservice.getActive();
158               this.epWidgetCatalogList = epMicroservice.getEpWidgetCatalogList();
159               this.epMicroserviceParameters = epMicroservice.getEpMicroserviceParameters();
160        }
161 }