Fix OSGi wiring issues
[ccsdk/features.git] / blueprints-processor / plugin / model-provider / src / main / java / org / onap / ccsdk / features / model / data / dict / SourcesProperties.java
1 /*\r
2  * Copyright © 2017-2018 AT&T Intellectual Property.\r
3  * Modifications Copyright © 2018 IBM.\r
4  * \r
5  * Licensed under the Apache License, Version 2.0 (the "License");\r
6  * you may not use this file except in compliance with the License.\r
7  * You may obtain a copy of the License at\r
8  * \r
9  * http://www.apache.org/licenses/LICENSE-2.0\r
10  * \r
11  * Unless required by applicable law or agreed to in writing, software\r
12  * distributed under the License is distributed on an "AS IS" BASIS,\r
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14  * See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  */\r
17 \r
18 package org.onap.ccsdk.features.model.data.dict;\r
19 \r
20 import java.util.List;\r
21 import java.util.Map;\r
22 import com.fasterxml.jackson.annotation.JsonProperty;\r
23 \r
24 public class SourcesProperties {\r
25 \r
26     @JsonProperty(value = "name")\r
27     private String name;\r
28 \r
29     @JsonProperty(value = "base")\r
30     private String base;\r
31 \r
32     @JsonProperty(value = "type")\r
33     private String type;\r
34 \r
35     @JsonProperty(value = "query")\r
36     private String query;\r
37 \r
38     @JsonProperty(value = "url-path")\r
39     private String urlPath;\r
40 \r
41     @JsonProperty(value = "path")\r
42     private String path;\r
43 \r
44     @JsonProperty("input-key-mapping")\r
45     private Map<String, String> inputKeyMapping;\r
46 \r
47     @JsonProperty("output-key-mapping")\r
48     private Map<String, String> outputKeyMapping;\r
49 \r
50     @JsonProperty("key-dependencies")\r
51     private List<String> dependencies;\r
52 \r
53     public String getName() {\r
54         return name;\r
55     }\r
56 \r
57     public void setName(String name) {\r
58         this.name = name;\r
59     }\r
60 \r
61     public String getBase() {\r
62         return base;\r
63     }\r
64 \r
65     public void setBase(String base) {\r
66         this.base = base;\r
67     }\r
68 \r
69     public String getType() {\r
70         return type;\r
71     }\r
72 \r
73     public void setType(String type) {\r
74         this.type = type;\r
75     }\r
76 \r
77     public String getQuery() {\r
78         return query;\r
79     }\r
80 \r
81     public void setQuery(String query) {\r
82         this.query = query;\r
83     }\r
84 \r
85     public String getUrlPath() {\r
86         return urlPath;\r
87     }\r
88 \r
89     public void setUrlPath(String urlPath) {\r
90         this.urlPath = urlPath;\r
91     }\r
92 \r
93     public String getPath() {\r
94         return path;\r
95     }\r
96 \r
97     public void setPath(String path) {\r
98         this.path = path;\r
99     }\r
100 \r
101     public Map<String, String> getInputKeyMapping() {\r
102         return inputKeyMapping;\r
103     }\r
104 \r
105     public void setInputKeyMapping(Map<String, String> inputKeyMapping) {\r
106         this.inputKeyMapping = inputKeyMapping;\r
107     }\r
108 \r
109     public Map<String, String> getOutputKeyMapping() {\r
110         return outputKeyMapping;\r
111     }\r
112 \r
113     public void setOutputKeyMapping(Map<String, String> outputKeyMapping) {\r
114         this.outputKeyMapping = outputKeyMapping;\r
115     }\r
116 \r
117     public List<String> getDependencies() {\r
118         return dependencies;\r
119     }\r
120 \r
121     public void setDependencies(List<String> dependencies) {\r
122         this.dependencies = dependencies;\r
123     }\r
124 \r
125 }\r