Interface operation support for service - BE
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / ui / model / UiResourceDataTransfer.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.ui.model;
22
23 import org.openecomp.sdc.be.model.AdditionalInformationDefinition;
24 import org.openecomp.sdc.be.model.PropertyDefinition;
25
26 import java.util.List;
27
28 public class UiResourceDataTransfer extends UiComponentDataTransfer{
29
30     private UiResourceMetadata metadata;
31
32     private List<String> derivedFrom;
33
34     private List<String> derivedList;
35
36     private List<PropertyDefinition> properties;
37
38     private List<PropertyDefinition> attributes;
39
40
41     private List<String> defaultCapabilities;
42
43
44     public UiResourceDataTransfer(){}
45
46     public List<AdditionalInformationDefinition> getAdditionalInformation() {
47         return additionalInformation;
48     }
49
50     public void setAdditionalInformation(List<AdditionalInformationDefinition> additionalInformation) {
51         this.additionalInformation = additionalInformation;
52     }
53
54     public UiResourceMetadata getMetadata() {
55         return metadata;
56     }
57
58     public void setMetadata(UiResourceMetadata metadata) {
59         this.metadata = metadata;
60     }
61
62     public List<String> getDerivedFrom() {
63         return derivedFrom;
64     }
65
66     public void setDerivedFrom(List<String> derivedFrom) {
67         this.derivedFrom = derivedFrom;
68     }
69
70     public List<String> getDerivedList() {
71         return derivedList;
72     }
73
74     public void setDerivedList(List<String> derivedList) {
75         this.derivedList = derivedList;
76     }
77
78     public List<PropertyDefinition> getProperties() {
79         return properties;
80     }
81
82     public void setProperties(List<PropertyDefinition> properties) {
83         this.properties = properties;
84     }
85
86     public List<PropertyDefinition> getAttributes() {
87         return attributes;
88     }
89
90     public void setAttributes(List<PropertyDefinition> attributes) {
91         this.attributes = attributes;
92     }
93
94     public List<String> getDefaultCapabilities() {
95         return defaultCapabilities;
96     }
97
98     public void setDefaultCapabilities(List<String> defaultCapabilities) {
99         this.defaultCapabilities = defaultCapabilities;
100     }
101 }