Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / externalapi / servlet / representation / ResourceAssetDetailedMetadata.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.be.externalapi.servlet.representation;
22
23 import java.util.List;
24
25 public class ResourceAssetDetailedMetadata extends ResourceAssetMetadata {
26
27     private String lastUpdaterFullName;
28     private String toscaResourceName;
29     private List<ResourceInstanceMetadata> resources;
30     private List<ArtifactMetadata> artifacts;
31     private String description;
32
33     public String getLastUpdaterFullName() {
34         return lastUpdaterFullName;
35     }
36
37     public void setLastUpdaterFullName(String lastUpdaterFullName) {
38         this.lastUpdaterFullName = lastUpdaterFullName;
39     }
40
41     public String getToscaResourceName() {
42         return toscaResourceName;
43     }
44
45     public void setToscaResourceName(String toscaResourceName) {
46         this.toscaResourceName = toscaResourceName;
47     }
48
49     public List<ResourceInstanceMetadata> getResources() {
50         return resources;
51     }
52
53     public void setResources(List<ResourceInstanceMetadata> resources) {
54         this.resources = resources;
55     }
56
57     public List<ArtifactMetadata> getArtifacts() {
58         return artifacts;
59     }
60
61     public void setArtifacts(List<ArtifactMetadata> artifactMetaList) {
62         this.artifacts = artifactMetaList;
63     }
64
65     public String getDescription() {
66         return description;
67     }
68
69     public void setDescription(String description) {
70         this.description = description;
71     }
72
73 }