Fix the java code style issue.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / ExtsysAppConfiguration.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.aai.esr;
18
19 import com.fasterxml.jackson.annotation.JsonProperty;
20 import io.dropwizard.Configuration;
21 import org.hibernate.validator.constraints.NotEmpty;
22 import org.jvnet.hk2.annotations.Service;
23 import javax.validation.Valid;
24
25 @Service
26 public class ExtsysAppConfiguration extends Configuration {
27     @NotEmpty
28     private String template;
29
30     @NotEmpty
31     private String defaultName = "ONAP-A&AI-ESR";
32
33     @NotEmpty
34     private String msbDiscoveryIp;
35
36     @NotEmpty
37     private String msbDiscoveryPort;
38
39     @NotEmpty
40     private String registByHand;
41
42     @NotEmpty
43     private String msbServerAddr;
44
45     @Valid
46     private String serviceIp;
47
48     @JsonProperty
49     public String getTemplate() {
50         return template;
51     }
52
53     @JsonProperty
54     public void setTemplate(String template) {
55         this.template = template;
56     }
57
58     @JsonProperty
59     public String getDefaultName() {
60         return defaultName;
61     }
62
63     @JsonProperty
64     public void setDefaultName(String name) {
65         this.defaultName = name;
66     }
67
68     @JsonProperty
69     public String getMsbDiscoveryIp() {
70         return msbDiscoveryIp;
71     }
72
73     @JsonProperty
74     public void setMsbDiscoveryIp(String discoveryIp) {
75         this.msbDiscoveryIp = discoveryIp;
76     }
77
78     @JsonProperty
79     public String getMsbServerAddr() {
80         return msbServerAddr;
81     }
82
83     @JsonProperty
84     public void setMsbServerAddr(String msbServerAddr) {
85         this.msbServerAddr = msbServerAddr;
86     }
87
88     @JsonProperty
89     public String getServiceIp() {
90         return serviceIp;
91     }
92
93     @JsonProperty
94     public void setServiceIp(String serviceIp) {
95         this.serviceIp = serviceIp;
96     }
97
98     @JsonProperty
99     public String getRegistByHand() {
100         return registByHand;
101     }
102
103     @JsonProperty
104     public void setRegistByHand(String registByHand) {
105         this.registByHand = registByHand;
106     }
107
108     @JsonProperty
109     public void setMsbDiscoveryPort(String msbDiscoveryPort) {
110         this.msbDiscoveryPort = msbDiscoveryPort;
111     }
112
113     @JsonProperty
114     public String getMsbDiscoveryPort() {
115         return msbDiscoveryPort;
116     }
117
118 }