modify msb register part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / msb / bo / MsbServiceInfo.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
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
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.msb.bo;
18
19 public class MsbServiceInfo {
20         private String serviceName;
21         private String version;
22         private String protocol;
23         private String visualRange;
24         private String url;
25
26         public String getServiceName() {
27                 return serviceName;
28         }
29
30         public void setServiceName(String serviceName) {
31                 this.serviceName = serviceName;
32         }
33
34         public String getVersion() {
35                 return version;
36         }
37
38         public void setVersion(String version) {
39                 this.version = version;
40         }
41
42         public String getProtocol() {
43                 return protocol;
44         }
45
46         public void setProtocol(String protocol) {
47                 this.protocol = protocol;
48         }
49
50         public String getVisualRange() {
51                 return visualRange;
52         }
53
54         public void setVisualRange(String visualRange) {
55                 this.visualRange = visualRange;
56         }
57
58         public String getUrl() {
59                 return url;
60         }
61
62         public void setUrl(String url) {
63                 this.url = url;
64         }
65
66 }