Modify groupId for ems driver
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / serviceregister / model / MsbRegisterVo.java
1 /**
2  * Copyright 2017 BOCO Corporation.  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.onap.vfc.nfvo.emsdriver.serviceregister.model;
17
18 import java.util.List;
19
20
21 public class MsbRegisterVo {
22         private String serviceName = "emsdriver";
23         private String version = "v1";
24         private String url = "/api/emsdriver/v1";
25         private String protocol = "REST";
26         private String visualRange = "1";
27         private List<ServiceNodeVo> nodes;
28         
29         
30         /**
31          * @return the serviceName
32          */
33         public String getServiceName() {
34                 return serviceName;
35         }
36         /**
37          * @param serviceName the serviceName to set
38          */
39         public void setServiceName(String serviceName) {
40                 this.serviceName = serviceName;
41         }
42         /**
43          * @return the version
44          */
45         public String getVersion() {
46                 return version;
47         }
48         /**
49          * @param version the version to set
50          */
51         public void setVersion(String version) {
52                 this.version = version;
53         }
54         /**
55          * @return the url
56          */
57         public String getUrl() {
58                 return url;
59         }
60         /**
61          * @param url the url to set
62          */
63         public void setUrl(String url) {
64                 this.url = url;
65         }
66         /**
67          * @return the protocol
68          */
69         public String getProtocol() {
70                 return protocol;
71         }
72         /**
73          * @param protocol the protocol to set
74          */
75         public void setProtocol(String protocol) {
76                 this.protocol = protocol;
77         }
78         /**
79          * @return the visualRange
80          */
81         public String getVisualRange() {
82                 return visualRange;
83         }
84         /**
85          * @param visualRange the visualRange to set
86          */
87         public void setVisualRange(String visualRange) {
88                 this.visualRange = visualRange;
89         }
90         /**
91          * @return the nodes
92          */
93         public List<ServiceNodeVo> getNodes() {
94                 return nodes;
95         }
96         /**
97          * @param nodes the nodes to set
98          */
99         public void setNodes(List<ServiceNodeVo> nodes) {
100                 this.nodes = nodes;
101         }
102         
103         
104         
105 }