DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ItemsResponse / Item.java
1
2 package json.response.ItemsResponse;
3
4 import java.util.List;
5 import javax.annotation.Generated;
6 import com.google.gson.annotations.SerializedName;
7
8 @Generated("net.hexar.json2pojo")
9 @SuppressWarnings("unused")
10 public class Item {
11
12     @SerializedName("artifacts")
13     private List<Artifact> mArtifacts;
14     @SerializedName("catalog")
15     private String mCatalog;
16     @SerializedName("catalogId")
17     private Long mCatalogId;
18     @SerializedName("category")
19     private String mCategory;
20     @SerializedName("description")
21     private String mDescription;
22     @SerializedName("id")
23     private Long mId;
24     @SerializedName("invariantUUID")
25     private String mInvariantUUID;
26     @SerializedName("itemId")
27     private String mItemId;
28     @SerializedName("lastUpdaterFullName")
29     private String mLastUpdaterFullName;
30     @SerializedName("lastUpdaterUserId")
31     private String mLastUpdaterUserId;
32     @SerializedName("lifecycleState")
33     private String mLifecycleState;
34     @SerializedName("models")
35     private List<Model> mModels;
36     @SerializedName("name")
37     private String mName;
38     @SerializedName("resourceType")
39     private String mResourceType;
40     @SerializedName("subCategory")
41     private String mSubCategory;
42     @SerializedName("toscaModelURL")
43     private String mToscaModelURL;
44     @SerializedName("toscaResourceName")
45     private String mToscaResourceName;
46     @SerializedName("uuid")
47     private String mUuid;
48     @SerializedName("version")
49     private String mVersion;
50
51     public List<Artifact> getArtifacts() {
52         return mArtifacts;
53     }
54
55     public void setArtifacts(List<Artifact> artifacts) {
56         mArtifacts = artifacts;
57     }
58
59     public String getCatalog() {
60         return mCatalog;
61     }
62
63     public void setCatalog(String catalog) {
64         mCatalog = catalog;
65     }
66
67     public Long getCatalogId() {
68         return mCatalogId;
69     }
70
71     public void setCatalogId(Long catalogId) {
72         mCatalogId = catalogId;
73     }
74
75     public String getCategory() {
76         return mCategory;
77     }
78
79     public void setCategory(String category) {
80         mCategory = category;
81     }
82
83     public String getDescription() {
84         return mDescription;
85     }
86
87     public void setDescription(String description) {
88         mDescription = description;
89     }
90
91     public Long getId() {
92         return mId;
93     }
94
95     public void setId(Long id) {
96         mId = id;
97     }
98
99     public String getInvariantUUID() {
100         return mInvariantUUID;
101     }
102
103     public void setInvariantUUID(String invariantUUID) {
104         mInvariantUUID = invariantUUID;
105     }
106
107     public String getItemId() {
108         return mItemId;
109     }
110
111     public void setItemId(String itemId) {
112         mItemId = itemId;
113     }
114
115     public String getLastUpdaterFullName() {
116         return mLastUpdaterFullName;
117     }
118
119     public void setLastUpdaterFullName(String lastUpdaterFullName) {
120         mLastUpdaterFullName = lastUpdaterFullName;
121     }
122
123     public String getLastUpdaterUserId() {
124         return mLastUpdaterUserId;
125     }
126
127     public void setLastUpdaterUserId(String lastUpdaterUserId) {
128         mLastUpdaterUserId = lastUpdaterUserId;
129     }
130
131     public String getLifecycleState() {
132         return mLifecycleState;
133     }
134
135     public void setLifecycleState(String lifecycleState) {
136         mLifecycleState = lifecycleState;
137     }
138
139     public List<Model> getModels() {
140         return mModels;
141     }
142
143     public void setModels(List<Model> models) {
144         mModels = models;
145     }
146
147     public String getName() {
148         return mName;
149     }
150
151     public void setName(String name) {
152         mName = name;
153     }
154
155     public String getResourceType() {
156         return mResourceType;
157     }
158
159     public void setResourceType(String resourceType) {
160         mResourceType = resourceType;
161     }
162
163     public String getSubCategory() {
164         return mSubCategory;
165     }
166
167     public void setSubCategory(String subCategory) {
168         mSubCategory = subCategory;
169     }
170
171     public String getToscaModelURL() {
172         return mToscaModelURL;
173     }
174
175     public void setToscaModelURL(String toscaModelURL) {
176         mToscaModelURL = toscaModelURL;
177     }
178
179     public String getToscaResourceName() {
180         return mToscaResourceName;
181     }
182
183     public void setToscaResourceName(String toscaResourceName) {
184         mToscaResourceName = toscaResourceName;
185     }
186
187     public String getUuid() {
188         return mUuid;
189     }
190
191     public void setUuid(String uuid) {
192         mUuid = uuid;
193     }
194
195     public String getVersion() {
196         return mVersion;
197     }
198
199     public void setVersion(String version) {
200         mVersion = version;
201     }
202
203 }