[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / AssetStructure.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.openecomp.sdc.ci.tests.datatypes;
22
23 public class AssetStructure {
24
25         private String uuid;
26         private String invariantUUID;
27         private String name;
28         private String version;
29         private String toscaModelURL;
30         private String category;
31         private String lifecycleState;
32         private String lastUpdaterUserId;
33
34         public AssetStructure() {
35                 super();
36         }
37
38         public AssetStructure(String uuid, String invariantUUID, String name, String version, String toscaModelURL,
39                         String category, String lifecycleState, String lastUpdaterUserId) {
40                 super();
41                 this.uuid = uuid;
42                 this.invariantUUID = invariantUUID;
43                 this.name = name;
44                 this.version = version;
45                 this.toscaModelURL = toscaModelURL;
46                 this.category = category;
47                 this.lifecycleState = lifecycleState;
48                 this.lastUpdaterUserId = lastUpdaterUserId;
49         }
50
51         @Override
52         public String toString() {
53                 return "AssetStructure [uuid=" + uuid + ", invariantUUID=" + invariantUUID + ", name=" + name + ", version="
54                                 + version + ", toscaModelURL=" + toscaModelURL + ", category=" + category + ", lifecycleState="
55                                 + lifecycleState + ", lastUpdaterUserId=" + lastUpdaterUserId + "]";
56         }
57
58         public String getUuid() {
59                 return uuid;
60         }
61
62         public void setUuid(String uuid) {
63                 this.uuid = uuid;
64         }
65
66         public String getInvariantUUID() {
67                 return invariantUUID;
68         }
69
70         public void setInvariantUUID(String invariantUUID) {
71                 this.invariantUUID = invariantUUID;
72         }
73
74         public String getName() {
75                 return name;
76         }
77
78         public void setName(String name) {
79                 this.name = name;
80         }
81
82         public String getVersion() {
83                 return version;
84         }
85
86         public void setVersion(String version) {
87                 this.version = version;
88         }
89
90         public String getToscaModelURL() {
91                 return toscaModelURL;
92         }
93
94         public void setToscaModelURL(String toscaModelURL) {
95                 this.toscaModelURL = toscaModelURL;
96         }
97
98         public String getCategory() {
99                 return category;
100         }
101
102         public void setCategory(String category) {
103                 this.category = category;
104         }
105
106         public String getLifecycleState() {
107                 return lifecycleState;
108         }
109
110         public void setLifecycleState(String lifecycleState) {
111                 this.lifecycleState = lifecycleState;
112         }
113
114         public String getLastUpdaterUserId() {
115                 return lastUpdaterUserId;
116         }
117
118         public void setLastUpdaterUserId(String lastUpdaterUserId) {
119                 this.lastUpdaterUserId = lastUpdaterUserId;
120         }
121
122 }