c7d5f0e986ffb248c8bbd667c688e0278cdd856a
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / wso2bpel-mgr / src / main / java / org / openo / carbon / bpel / Wso2BpelConfiguration.java
1 /**
2  * Copyright 2016 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.openo.carbon.bpel;
17
18 import io.dropwizard.Configuration;
19 import com.fasterxml.jackson.annotation.JsonProperty;
20 import io.dropwizard.db.DataSourceFactory;
21 import org.hibernate.validator.constraints.NotEmpty;
22
23 import javax.validation.constraints.NotNull;
24
25 public class Wso2BpelConfiguration extends Configuration {
26   @NotEmpty
27   private String template;
28   @NotEmpty
29   private String apiDescription = "Wso2bps REST API";
30   @NotNull
31   private DataSourceFactory database = new DataSourceFactory();
32
33   @JsonProperty
34   public String getTemplate() {
35     return template;
36   }
37
38   @JsonProperty
39   public String getApiDescription() {
40     return apiDescription;
41   }
42   
43   @NotEmpty
44   private String msbServerAddr;
45
46   @JsonProperty("database")
47   public DataSourceFactory getDataSourceFactory() {
48     return database;
49   }
50
51   @JsonProperty
52   public DataSourceFactory getDatabase() {
53     return database;
54   }
55
56   @JsonProperty
57   public void setDatabase(DataSourceFactory database) {
58     this.database = database;
59   }
60
61   @JsonProperty
62   public String getMsbServerAddr() {
63     return msbServerAddr;
64   }
65
66   @JsonProperty
67   public void setMsbServerAddr(String msbServerAddr) {
68     this.msbServerAddr = msbServerAddr;
69   }
70
71 }