38633fb6f785d67ac59f74ece694c6cd14bb4e17
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdcrests.item.types;
21
22 import java.util.Map;
23
24 public class ItemDto {
25
26     private String id;
27     private String type;
28     private String name;
29     private String description;
30     private String owner;
31     private String status;
32     private Map<String, Object> properties;
33
34     public String getId() {
35         return id;
36     }
37
38     public void setId(String id) {
39         this.id = id;
40     }
41
42     public String getType() {
43         return type;
44     }
45
46     public void setType(String type) {
47         this.type = type;
48     }
49
50     public String getName() {
51         return name;
52     }
53
54     public void setName(String name) {
55         this.name = name;
56     }
57
58     public String getDescription() {
59         return description;
60     }
61
62     public void setDescription(String description) {
63         this.description = description;
64     }
65
66     public String getOwner() {
67         return owner;
68     }
69
70     public void setOwner(String owner) {
71         this.owner = owner;
72     }
73
74     public String getStatus() {
75         return status;
76     }
77
78     public void setStatus(String status) {
79         this.status = status;
80     }
81
82     public Map<String, Object> getProperties() {
83         return properties;
84     }
85
86     public void setProperties(Map<String, Object> properties) {
87         this.properties = properties;
88     }
89 }