[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / ResourceInstanceAssetStructure.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 import java.util.List;
24
25 public class ResourceInstanceAssetStructure {
26
27         String resourceInstanceName;
28         String resourceName;
29         String resourceInvariantUUID;
30         String resourceVersion;
31         String resoucreType;
32         String resourceUUID;
33         List<ArtifactAssetStructure> artifacts;
34
35         public ResourceInstanceAssetStructure() {
36                 super();
37         }
38
39         public ResourceInstanceAssetStructure(String resourceInstanceName, String resourceName,
40                         String resourceInvariantUUID, String resourceVersion, String resoucreType, String resourceUUID,
41                         List<ArtifactAssetStructure> artifacts) {
42                 super();
43                 this.resourceInstanceName = resourceInstanceName;
44                 this.resourceName = resourceName;
45                 this.resourceInvariantUUID = resourceInvariantUUID;
46                 this.resourceVersion = resourceVersion;
47                 this.resoucreType = resoucreType;
48                 this.resourceUUID = resourceUUID;
49                 this.artifacts = artifacts;
50         }
51
52         public String getResourceInstanceName() {
53                 return resourceInstanceName;
54         }
55
56         public void setResourceInstanceName(String resourceInstanceName) {
57                 this.resourceInstanceName = resourceInstanceName;
58         }
59
60         public String getResourceName() {
61                 return resourceName;
62         }
63
64         public void setResourceName(String resourceName) {
65                 this.resourceName = resourceName;
66         }
67
68         public String getResourceInvariantUUID() {
69                 return resourceInvariantUUID;
70         }
71
72         public void setResourceInvariantUUID(String resourceInvariantUUID) {
73                 this.resourceInvariantUUID = resourceInvariantUUID;
74         }
75
76         public String getResourceVersion() {
77                 return resourceVersion;
78         }
79
80         public void setResourceVersion(String resourceVersion) {
81                 this.resourceVersion = resourceVersion;
82         }
83
84         public String getResoucreType() {
85                 return resoucreType;
86         }
87
88         public void setResoucreType(String resoucreType) {
89                 this.resoucreType = resoucreType;
90         }
91
92         public String getResourceUUID() {
93                 return resourceUUID;
94         }
95
96         public void setResourceUUID(String resourceUUID) {
97                 this.resourceUUID = resourceUUID;
98         }
99
100         public List<ArtifactAssetStructure> getArtifacts() {
101                 return artifacts;
102         }
103
104         public void setArtifacts(List<ArtifactAssetStructure> artifacts) {
105                 this.artifacts = artifacts;
106         }
107
108         @Override
109         public String toString() {
110                 return "ResourceInstanceAssetStructure [resourceInstanceName=" + resourceInstanceName + ", resourceName="
111                                 + resourceName + ", resourceInvariantUUID=" + resourceInvariantUUID + ", resourceVersion="
112                                 + resourceVersion + ", resoucreType=" + resoucreType + ", resourceUUID=" + resourceUUID + ", artifacts="
113                                 + artifacts + "]";
114         }
115
116 }