c644faa72fc93607861f6641f49207196bdc13ee
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / commons / model / CollectMsg.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.commons.model;
17
18 public class CollectMsg {
19         
20         private long id;
21         
22         private String emsName;
23         
24         private String type;
25
26         /**
27          * @return the id
28          */
29         public long getId() {
30                 return id;
31         }
32
33         /**
34          * @param id the id to set
35          */
36         public void setId(long id) {
37                 this.id = id;
38         }
39
40         /**
41          * @return the emsName
42          */
43         public String getEmsName() {
44                 return emsName;
45         }
46
47         /**
48          * @param emsName the emsName to set
49          */
50         public void setEmsName(String emsName) {
51                 this.emsName = emsName;
52         }
53
54         /**
55          * @return the type
56          */
57         public String getType() {
58                 return type;
59         }
60
61         /**
62          * @param type the type to set
63          */
64         public void setType(String type) {
65                 this.type = type;
66         }
67         
68
69 }