2 * Copyright 2016-2017 ZTE Corporation.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.aai.esr;
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;
25 import javax.validation.Valid;
28 public class ExtsysAppConfiguration extends Configuration {
30 private String template;
33 private String defaultName = "ONAP-A&AI-ESR";
36 private String msbDiscoveryIp;
39 private String msbDiscoveryPort;
42 private String registByHand;
45 private String msbServerAddr;
48 private String serviceIp;
51 public String getTemplate() {
56 public void setTemplate(String template) {
57 this.template = template;
61 public String getDefaultName() {
66 public void setDefaultName(String name) {
67 this.defaultName = name;
71 public String getMsbDiscoveryIp() {
72 return msbDiscoveryIp;
76 public void setMsbDiscoveryIp(String discoveryIp) {
77 this.msbDiscoveryIp = discoveryIp;
81 public String getMsbServerAddr() {
86 public void setMsbServerAddr(String msbServerAddr) {
87 this.msbServerAddr = msbServerAddr;
90 public String getServiceIp() {
95 public void setServiceIp(String serviceIp) {
96 this.serviceIp = serviceIp;
100 public String getRegistByHand() {
105 public void setRegistByHand(String registByHand) {
106 this.registByHand = registByHand;
110 public void setMsbDiscoveryPort(String msbDiscoveryPort) {
111 this.msbDiscoveryPort = msbDiscoveryPort;
115 public String getMsbDiscoveryPort() {
116 return msbDiscoveryPort;