80c48fcc3d92b36b356ab6a39ee7f8661268a59f
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / MicroserviceParameter.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.domain;
21
22 import org.openecomp.portalsdk.core.domain.support.DomainVo;
23
24 public class MicroserviceParameter extends DomainVo {
25
26         private static final long serialVersionUID = 1L;
27
28         public MicroserviceParameter() {
29
30         }
31
32         private Long id;
33
34         private long serviceId;
35
36         private String para_key;
37
38         private String para_value;
39
40         public Long getId() {
41                 return id;
42         }
43
44         public void setId(Long id) {
45                 this.id = id;
46         }
47
48         public long getServiceId() {
49                 return serviceId;
50         }
51
52         public void setServiceId(long serviceId) {
53                 this.serviceId = serviceId;
54         }
55
56         public String getPara_key() {
57                 return para_key;
58         }
59
60         public void setPara_key(String para_key) {
61                 this.para_key = para_key;
62         }
63
64         public String getPara_value() {
65                 return para_value;
66         }
67
68         public void setPara_value(String para_value) {
69                 this.para_value = para_value;
70         }
71
72         @Override
73         public String toString() {
74                 return "MicroserviceParameter [id=" + id + ", serviceId=" + serviceId + ", para_key=" + para_key
75                                 + ", para_value=" + para_value + "]";
76         }
77
78 }