Moving all files to root directory
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / openecomp / appc / domainmodel / lcm / VNFContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.domainmodel.lcm;
23
24
25 public class VNFContext {
26     private String id;
27     private String type;
28     private String version;
29     private String status;
30
31     public String getId() {
32         return id;
33     }
34
35     public void setId(String id) {
36         this.id = id;
37     }
38
39     public String getType() {
40         return type;
41     }
42
43     public void setType(String type) {
44         this.type = type;
45     }
46
47     public String getVersion() {
48         return version;
49     }
50
51     public void setVersion(String version) {
52         this.version = version;
53     }
54
55     public String getStatus() {
56         return status;
57     }
58
59     public void setStatus(String status) {
60         this.status = status;
61     }
62
63
64     @Override
65     public String toString() {
66         return "VNFContext{" +
67                 "id='" + id + '\'' +
68                 ", type='" + type + '\'' +
69                 ", version='" + version + '\'' +
70                 ", status='" + status + '\'' +
71                 '}';
72     }
73 }