remove not required docs and .readthedocs.yaml
[msb/java-sdk.git] / src / main / java / org / onap / msb / sdk / httpclient / ServiceHttpEndPointBeanObject.java
1 /*******************************************************************************
2  * Copyright 2017 ZTE, Inc. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.sdk.httpclient;
15
16 public class ServiceHttpEndPointBeanObject {
17
18   private String serviceName;
19   private String serviceVersion;
20   private String msbProtocl = "https";
21
22   private String clientProtocl = "http";
23
24   private String nameSpace = "";
25
26   // The visibility of service: '0' if the service can be accessed outside, '1' if it can only be accessed within the system, default '1'
27   private String visualRange = "0";
28
29   private String serverType = "api";
30
31
32   public String getServiceName() {
33     return serviceName;
34   }
35
36   public void setServiceName(String serviceName) {
37     this.serviceName = serviceName;
38   }
39
40   public String getServiceVersion() {
41     return serviceVersion;
42   }
43
44   public void setServiceVersion(String serviceVersion) {
45     this.serviceVersion = serviceVersion;
46   }
47
48
49   public String getServerType() {
50     return serverType;
51   }
52
53   public void setServerType(String serverType) {
54     this.serverType = serverType;
55   }
56
57
58
59   public String getMsbProtocl() {
60     return msbProtocl;
61   }
62
63   public void setMsbProtocl(String msbProtocl) {
64     this.msbProtocl = msbProtocl;
65   }
66
67   public String getNameSpace() {
68     return nameSpace;
69   }
70
71   public void setNameSpace(String nameSpace) {
72     this.nameSpace = nameSpace;
73   }
74
75   public String getVisualRange() {
76     return visualRange;
77   }
78
79   public void setVisualRange(String visualRange) {
80     this.visualRange = visualRange;
81   }
82
83   public String getClientProtocl() {
84     return clientProtocl;
85   }
86
87   public void setClientProtocl(String clientProtocl) {
88     this.clientProtocl = clientProtocl;
89   }
90
91   @Override
92   public String toString() {
93     return "ServiceHttpEndPointBeanObject [serviceName=" + serviceName + ", serviceVersion="
94         + serviceVersion + ", msbProtocl=" + msbProtocl + ", clientProtocl=" + clientProtocl
95         + ", nameSpace=" + nameSpace + ", visualRange=" + visualRange + ", serverType=" + serverType
96         + "]";
97   }
98
99
100
101 }