added svcapi ui and camunda code
[it/otf.git] / otf-camunda / src / main / java / org / oran / otf / common / model / local / DMaaPRequest.java
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 package org.oran.otf.common.model.local;\r
18 \r
19 import org.oran.otf.common.utility.gson.Convert;\r
20 import com.fasterxml.jackson.annotation.JsonProperty;\r
21 \r
22 public class DMaaPRequest {\r
23     private String hostname;\r
24     private String asyncTopic;\r
25     private boolean requiresProxy;\r
26 \r
27     public DMaaPRequest() {\r
28     }\r
29 \r
30     public DMaaPRequest(\r
31             @JsonProperty(value = "hostname", required = true) String hostname,\r
32             @JsonProperty(value = "asyncTopic", required = true) String asyncTopic,\r
33             @JsonProperty(value = "requriesProxy", required = false) boolean requiresProxy) {\r
34         this.hostname = hostname;\r
35         this.asyncTopic = asyncTopic;\r
36         this.requiresProxy = requiresProxy;\r
37 \r
38     }\r
39 \r
40     public String getHostname() {\r
41         return hostname;\r
42     }\r
43 \r
44     public void setHostname(String hostname) {\r
45         this.hostname = hostname;\r
46     }\r
47 \r
48     public String getAsyncTopic() {\r
49         return asyncTopic;\r
50     }\r
51 \r
52     public void setAsyncTopic(String asyncTopic) {\r
53         this.asyncTopic = asyncTopic;\r
54     }\r
55 \r
56     public boolean getRequiresProxy(){\r
57         return this.requiresProxy;\r
58     }\r
59 \r
60     public void setRequiresProxy(boolean requiresProxy) {\r
61         this.requiresProxy = requiresProxy;\r
62     }\r
63 \r
64     @Override\r
65     public String toString() {\r
66         return Convert.objectToJson(this);\r
67     }\r
68 }\r
69 \r