DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / Environment.java
1
2 package json;
3 import javax.annotation.Generated;
4 import com.google.gson.annotations.SerializedName;
5
6 @Generated("net.hexar.json2pojo")
7 @SuppressWarnings("unused")
8 public class Environment {
9
10     @SerializedName("apiPath")
11     private String ApiPath;
12     @SerializedName("dcaeBeHost")
13     private String DcaeBeHost;
14     @SerializedName("dcaeBePort")
15     private String DcaeBePort;
16     @SerializedName("credential")
17     private Credential credential;
18
19     public String getApiPath() {
20         return ApiPath;
21     }
22
23     public void setApiPath(String apiPath) {
24         ApiPath = apiPath;
25     }
26
27     public String getDcaeBeHost() {
28         return DcaeBeHost;
29     }
30
31     public void setDcaeBeHost(String dcaeBeHost) {
32         DcaeBeHost = dcaeBeHost;
33     }
34
35     public String getDcaeBePort() {
36         return DcaeBePort;
37     }
38
39     public void setDcaeBePort(String dcaeBePort) {
40         DcaeBePort = dcaeBePort;
41     }
42
43     public Credential getCredential() {
44         return credential;
45     }
46
47     public void setCredential(Credential credential) {
48         this.credential = credential;
49     }
50
51 }