Fixed a logging problem
[holmes/rule-management.git] / rulemgt / src / main / java / org / onap / holmes / rulemgt / RuleAppConfig.java
1 /**
2  * Copyright 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 package org.onap.holmes.rulemgt;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19 import io.dropwizard.Configuration;
20 import io.dropwizard.db.DataSourceFactory;
21 import javax.validation.Valid;
22 import javax.validation.constraints.NotNull;
23 import org.hibernate.validator.constraints.NotEmpty;
24 import org.jvnet.hk2.annotations.Service;
25
26 @Service
27 public class RuleAppConfig extends Configuration {
28
29     @NotEmpty
30     private String defaultName = "Holmes Rule Management";
31
32     @NotEmpty
33     private String apidescription = "Holmes rule management rest API";
34
35     @Valid
36     @NotNull
37     private DataSourceFactory database = new DataSourceFactory();
38
39     @JsonProperty("database")
40     public DataSourceFactory getDataSourceFactory() {
41         return database;
42     }
43
44     @JsonProperty("database")
45     public void setDataSourceFactory(DataSourceFactory dataSourceFactory) {
46         this.database = dataSourceFactory;
47     }
48
49
50     public String getApidescription() {
51         return apidescription;
52     }
53
54     public void setApidescription(String apidescription) {
55         this.apidescription = apidescription;
56     }
57
58 }