CLIENT GUI Framework
[vnfsdk/refrepo.git] / openo-portal / portal-package / src / main / java / org / openo / portal / bean / MsbRegisterBean.java
1 /*
2  * Copyright 2016-2017, CMCC Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.portal.bean;
17
18 import java.util.List;
19
20 public class MsbRegisterBean {
21     private String serviceName = "";
22
23     private String lb_policy = "";
24
25     private String url = "";
26
27     private String protocol = "";
28
29     private String visualRange = "";
30
31     private List<ServiceNodeBean> nodes;
32
33     public String getServiceName() {
34         return serviceName;
35     }
36
37     public void setServiceName(String serviceName) {
38         this.serviceName = serviceName;
39     }
40
41     public String getLb_policy() {
42         return lb_policy;
43     }
44
45     public void setLb_policy(String lb_policy) {
46         this.lb_policy = lb_policy;
47     }
48
49     public String getUrl() {
50         return url;
51     }
52
53     public void setUrl(String url) {
54         this.url = url;
55     }
56
57     public String getProtocol() {
58         return protocol;
59     }
60
61     public void setProtocol(String protocol) {
62         this.protocol = protocol;
63     }
64
65     public String getVisualRange() {
66         return visualRange;
67     }
68
69     public void setVisualRange(String visualRange) {
70         this.visualRange = visualRange;
71     }
72
73     public List<ServiceNodeBean> getNodes() {
74         return nodes;
75     }
76
77     public void setNodes(List<ServiceNodeBean> nodes) {
78         this.nodes = nodes;
79     }
80 }