Initialize the App and Config Class
[holmes/dsa.git] / dmaap-dsa / src / main / java / org / onap / holmes / dsa / dmaap / DmaapDsaConfig.java
1 /*\r
2  * Copyright 2017 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.dsa.dmaap;\r
18 \r
19 import com.fasterxml.jackson.annotation.JsonProperty;\r
20 import io.dropwizard.Configuration;\r
21 import javax.validation.Valid;\r
22 import javax.validation.constraints.NotNull;\r
23 import org.hibernate.validator.constraints.NotEmpty;\r
24 import org.onap.holmes.common.config.MQConfig;\r
25 \r
26 public class DmaapDsaConfig extends Configuration {\r
27 \r
28     @NotEmpty\r
29     private String defaultName = "ONAP Holmes DMaaP DSA";\r
30 \r
31     @NotEmpty\r
32     private String apidescription = "Holmes data Source adapter API";\r
33 \r
34     @JsonProperty\r
35     @NotNull\r
36     @Valid\r
37     private MQConfig mqConfig;\r
38 \r
39 \r
40     public MQConfig getMqConfig() {\r
41         return mqConfig;\r
42     }\r
43 \r
44     public void setMqConfig(MQConfig mqConfig) {\r
45         this.mqConfig = mqConfig;\r
46     }\r
47 \r
48     public String getApidescription() {\r
49         return apidescription;\r
50     }\r
51 \r
52     public void setApidescription(String apidescription) {\r
53         this.apidescription = apidescription;\r
54     }\r
55 }\r