delete *.im files
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / MsbRegisterEntity.java
1 /**
2  * Copyright 2016 ZTE 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 package org.onap.sfc.entity;
17
18 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
19
20 import java.util.ArrayList;
21
22 @JsonIgnoreProperties(ignoreUnknown = true)
23 public class MsbRegisterEntity {
24     private String serviceName;
25     private String version;
26     private String url;
27     private String protocol;
28     private String visualRange;
29     private ArrayList<NodeEntity> nodes;
30
31     public String getServiceName() {
32         return serviceName;
33     }
34
35     public void setServiceName(String serviceName) {
36         this.serviceName = serviceName;
37     }
38
39     public String getVersion() {
40         return version;
41     }
42
43     public void setVersion(String version) {
44         this.version = version;
45     }
46
47     public String getUrl() {
48         return url;
49     }
50
51     public void setUrl(String url) {
52         this.url = url;
53     }
54
55     public String getProtocol() {
56         return protocol;
57     }
58
59     public void setProtocol(String protocol) {
60         this.protocol = protocol;
61     }
62
63     public String getVisualRange() {
64         return visualRange;
65     }
66
67     public void setVisualRange(String visualRange) {
68         this.visualRange = visualRange;
69     }
70
71     public ArrayList<NodeEntity> getNodes() {
72         return nodes;
73     }
74
75     public void setNodes(ArrayList<NodeEntity> nodes) {
76         this.nodes = nodes;
77     }
78 }