9823ddc66b774decf3d3ecee505295dd0490cd34
[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
24
25 import javax.validation.Valid;
26
27 @Service
28 public class ExtsysAppConfiguration extends Configuration {
29   @NotEmpty
30   private String template;
31
32   @NotEmpty
33   private String defaultName = "ONAP-A&AI-ESR";
34
35   @NotEmpty
36   private String msbIp;
37   
38   @NotEmpty
39   private String msbPort;
40   
41   @NotEmpty
42   private String msbServerAddr;
43   
44   @Valid
45   private String serviceIp;
46   
47   @JsonProperty
48   public String getTemplate() {
49     return template;
50   }
51
52   @JsonProperty
53   public void setTemplate(String template) {
54     this.template = template;
55   }
56
57   @JsonProperty
58   public String getDefaultName() {
59     return defaultName;
60   }
61
62   @JsonProperty
63   public void setDefaultName(String name) {
64     this.defaultName = name;
65   }
66   
67   @JsonProperty
68   public String getMsbIp() {
69     return msbIp;
70   }
71   
72   @JsonProperty
73   public String setMsbIp() {
74     return msbIp;
75   }
76   
77   @JsonProperty
78   public String getMsbServerAddr() {
79     return msbServerAddr;
80   }
81
82   @JsonProperty
83   public void setMsbServerAddr(String msbServerAddr) {
84     this.msbServerAddr = msbServerAddr;
85   }
86   @JsonProperty
87   public String getServiceIp() {
88     return serviceIp;
89   }
90
91   @JsonProperty
92   public void setServiceIp(String serviceIp) {
93     this.serviceIp = serviceIp;
94   }
95   @JsonProperty
96   public void setMsbPort(String msbPort) {
97     this.msbPort = msbPort;
98   }
99   
100   @JsonProperty
101   public String getMsbPort() {
102     return msbPort;
103   }
104 }