added generic fabric support to SO
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / installer / VfModuleArtifact.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.asdc.installer;
22
23
24 import java.io.UnsupportedEncodingException;
25
26 import org.onap.so.db.catalog.beans.HeatEnvironment;
27 import org.onap.so.db.catalog.beans.HeatFiles;
28 import org.onap.so.db.catalog.beans.HeatTemplate;
29 import org.onap.sdc.api.notification.IArtifactInfo;
30 import org.onap.sdc.api.results.IDistributionClientDownloadResult;
31
32 /**
33  * The structure that contains the artifactInfo and its associated DownloadedResult. 
34  *
35  */
36 public final class VfModuleArtifact {
37         private final IArtifactInfo artifactInfo;
38         private int deployedInDb=0;
39         private final String result;                    
40         private HeatFiles heatFiles;
41         private HeatTemplate heatTemplate;
42         private HeatEnvironment heatEnvironment;
43                 
44         public VfModuleArtifact(IArtifactInfo artifactinfo,IDistributionClientDownloadResult clientResult) throws UnsupportedEncodingException {
45                 artifactInfo=artifactinfo;
46                 result = new String(clientResult.getArtifactPayload(), "UTF-8");
47         }
48         
49         public VfModuleArtifact(IArtifactInfo artifactinfo,IDistributionClientDownloadResult clientResult, String modifiedHeatTemplate) throws UnsupportedEncodingException {
50                 artifactInfo=artifactinfo;
51                 if(modifiedHeatTemplate != null){
52                         result = modifiedHeatTemplate;
53                 }else{
54                         result = new String(clientResult.getArtifactPayload(), "UTF-8");
55                 }
56         }       
57
58         public HeatFiles getHeatFiles() {
59                 return heatFiles;
60         }
61
62         public void setHeatFiles(HeatFiles heatFiles) {
63                 this.heatFiles = heatFiles;
64         }
65
66         public HeatTemplate getHeatTemplate() {
67                 return heatTemplate;
68         }
69
70         public void setHeatTemplate(HeatTemplate heatTemplate) {
71                 this.heatTemplate = heatTemplate;
72         }
73
74         public IArtifactInfo getArtifactInfo() {
75                 return artifactInfo;
76         }
77
78         public String getResult() {
79                 return result;
80         }
81
82         public int getDeployedInDb() {
83                 return deployedInDb;
84         }
85
86         public void incrementDeployedInDB() {
87                 ++deployedInDb;
88         }
89
90         public HeatEnvironment getHeatEnvironment() {
91                 return heatEnvironment;
92         }
93
94         public void setHeatEnvironment(HeatEnvironment heatEnvironment) {
95                 this.heatEnvironment=heatEnvironment;           
96         }
97         
98 }