[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / main / java / org / openecomp / sdc / translator / datatypes / heattotosca / to / ResourceFileDataAndIDs.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.translator.datatypes.heattotosca.to;
22
23
24 import org.openecomp.sdc.heat.datatypes.manifest.FileData;
25
26
27 public class ResourceFileDataAndIDs {
28   private String resourceId;
29   private String translatedResourceId;
30   private FileData fileData;
31
32   public ResourceFileDataAndIDs() {
33   }
34
35   /**
36    * Instantiates a new Resource file data and i ds.
37    *
38    * @param resourceId           the resource id
39    * @param translatedResourceId the translated resource id
40    * @param fileData             the file data
41    */
42   public ResourceFileDataAndIDs(String resourceId, String translatedResourceId, FileData fileData) {
43     this.resourceId = resourceId;
44     this.translatedResourceId = translatedResourceId;
45     this.fileData = fileData;
46   }
47
48   public String getResourceId() {
49     return resourceId;
50   }
51
52   public void setResourceId(String resourceId) {
53     this.resourceId = resourceId;
54   }
55
56   public String getTranslatedResourceId() {
57     return translatedResourceId;
58   }
59
60   public void setTranslatedResourceId(String translatedResourceId) {
61     this.translatedResourceId = translatedResourceId;
62   }
63
64   public FileData getFileData() {
65     return fileData;
66   }
67
68   public void setFileData(FileData fileData) {
69     this.fileData = fileData;
70   }
71 }