e7265ff5dcb22f5773ecc41155b90332220c2f07
[clamp.git] / src / main / java / org / onap / clamp / clds / model / sdc / SdcServiceDetail.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
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  */
23
24 package org.onap.clamp.clds.model.sdc;
25
26 import java.util.List;
27
28 public class SdcServiceDetail {
29
30     private String uuid;
31     private String invariantUUID;
32     private String name;
33     private String version;
34     private String toscaModelURL;
35     private String category;
36     private String lifecycleState;
37     private String lastUpdaterUserId;
38     private String distributionStatus;
39     private String lastUpdaterFullName;
40     private List<SdcResource> resources;
41     private List<SdcArtifact> artifacts;
42
43     public String getUuid() {
44         return uuid;
45     }
46
47     public void setUuid(String uuid) {
48         this.uuid = uuid;
49     }
50
51     public String getInvariantUUID() {
52         return invariantUUID;
53     }
54
55     public void setInvariantUUID(String invariantUUID) {
56         this.invariantUUID = invariantUUID;
57     }
58
59     public String getName() {
60         return name;
61     }
62
63     public void setName(String name) {
64         this.name = name;
65     }
66
67     public String getVersion() {
68         return version;
69     }
70
71     public void setVersion(String version) {
72         this.version = version;
73     }
74
75     public String getToscaModelURL() {
76         return toscaModelURL;
77     }
78
79     public void setToscaModelURL(String toscaModelURL) {
80         this.toscaModelURL = toscaModelURL;
81     }
82
83     public String getCategory() {
84         return category;
85     }
86
87     public void setCategory(String category) {
88         this.category = category;
89     }
90
91     public String getLifecycleState() {
92         return lifecycleState;
93     }
94
95     public void setLifecycleState(String lifecycleState) {
96         this.lifecycleState = lifecycleState;
97     }
98
99     public String getLastUpdaterUserId() {
100         return lastUpdaterUserId;
101     }
102
103     public void setLastUpdaterUserId(String lastUpdaterUserId) {
104         this.lastUpdaterUserId = lastUpdaterUserId;
105     }
106
107     public String getDistributionStatus() {
108         return distributionStatus;
109     }
110
111     public void setDistributionStatus(String distributionStatus) {
112         this.distributionStatus = distributionStatus;
113     }
114
115     public String getLastUpdaterFullName() {
116         return lastUpdaterFullName;
117     }
118
119     public void setLastUpdaterFullName(String lastUpdaterFullName) {
120         this.lastUpdaterFullName = lastUpdaterFullName;
121     }
122
123     public List<SdcResource> getResources() {
124         return resources;
125     }
126
127     public void setResources(List<SdcResource> resources) {
128         this.resources = resources;
129     }
130
131     public List<SdcArtifact> getArtifacts() {
132         return artifacts;
133     }
134
135     public void setArtifacts(List<SdcArtifact> artifacts) {
136         this.artifacts = artifacts;
137     }
138
139 }