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