Containerization feature of 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
50         public HeatFiles getHeatFiles() {
51                 return heatFiles;
52         }
53
54         public void setHeatFiles(HeatFiles heatFiles) {
55                 this.heatFiles = heatFiles;
56         }
57
58         public HeatTemplate getHeatTemplate() {
59                 return heatTemplate;
60         }
61
62         public void setHeatTemplate(HeatTemplate heatTemplate) {
63                 this.heatTemplate = heatTemplate;
64         }
65
66         public IArtifactInfo getArtifactInfo() {
67                 return artifactInfo;
68         }
69
70         public String getResult() {
71                 return result;
72         }
73
74         public int getDeployedInDb() {
75                 return deployedInDb;
76         }
77
78         public void incrementDeployedInDB() {
79                 ++deployedInDb;
80         }
81
82         public HeatEnvironment getHeatEnvironment() {
83                 return heatEnvironment;
84         }
85
86         public void setHeatEnvironment(HeatEnvironment heatEnvironment) {
87                 this.heatEnvironment=heatEnvironment;           
88         }
89         
90 }