Remove Chinese comments
[msb/java-sdk.git] / src / main / java / org / onap / msb / sdk / httpclient / lb / LoadBalanceContext.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.lb;
15
16 import java.lang.reflect.Method;
17 import java.util.List;
18
19 import org.onap.msb.sdk.httpclient.ServiceHttpEndPointObject;
20
21 /**
22  * @author hu.rui
23  *
24  */
25 public class LoadBalanceContext {
26
27   private List<ServiceHttpEndPointObject> endPoints;
28
29   private Object[] args;
30
31   private Method method;
32
33
34   public Method getMethod() {
35     return method;
36   }
37
38   public void setMethod(Method method) {
39     this.method = method;
40   }
41
42   public List<ServiceHttpEndPointObject> getEndPoints() {
43     return endPoints;
44   }
45
46   public void setEndPoints(List<ServiceHttpEndPointObject> endPoints) {
47     this.endPoints = endPoints;
48   }
49
50   public Object[] getArgs() {
51     return args;
52   }
53
54   public void setArgs(Object[] args) {
55     this.args = args;
56   }
57
58
59
60 }