Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / controllerblueprints / modules / service / src / main / java / org / onap / ccsdk / cds / controllerblueprints / service / model / AutoMapResponse.java
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.controllerblueprints.service.model;
18
19 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment;
20 import org.onap.ccsdk.cds.controllerblueprints.service.domain.ResourceDictionary;
21
22 import java.util.List;
23
24 /**
25  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
26  *
27  * @author Brinda Santh
28  * @version 1.0
29  */
30 public class AutoMapResponse {
31
32     private List<ResourceAssignment> resourceAssignments;
33     private List<ResourceDictionary> dataDictionaries;
34
35     public List<ResourceAssignment> getResourceAssignments() {
36         return resourceAssignments;
37     }
38
39     public void setResourceAssignments(List<ResourceAssignment> resourceAssignments) {
40         this.resourceAssignments = resourceAssignments;
41     }
42
43     public List<ResourceDictionary> getDataDictionaries() {
44         return dataDictionaries;
45     }
46
47     public void setDataDictionaries(List<ResourceDictionary> dataDictionaries) {
48         this.dataDictionaries = dataDictionaries;
49     }
50
51
52
53 }