PNF ingestion in SO catalogdb
[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                 this(artifactinfo, clientResult, null);
46         }
47         
48         public VfModuleArtifact(IArtifactInfo artifactinfo,IDistributionClientDownloadResult clientResult, String modifiedHeatTemplate) throws UnsupportedEncodingException {
49                 artifactInfo=artifactinfo;
50                 if(modifiedHeatTemplate != null){
51                         result = modifiedHeatTemplate;
52                 }else{
53                         result = new String(clientResult.getArtifactPayload(), "UTF-8");
54                 }
55         }       
56
57         public HeatFiles getHeatFiles() {
58                 return heatFiles;
59         }
60
61         public void setHeatFiles(HeatFiles heatFiles) {
62                 this.heatFiles = heatFiles;
63         }
64
65         public HeatTemplate getHeatTemplate() {
66                 return heatTemplate;
67         }
68
69         public void setHeatTemplate(HeatTemplate heatTemplate) {
70                 this.heatTemplate = heatTemplate;
71         }
72
73         public IArtifactInfo getArtifactInfo() {
74                 return artifactInfo;
75         }
76
77         public String getResult() {
78                 return result;
79         }
80
81         public int getDeployedInDb() {
82                 return deployedInDb;
83         }
84
85         public void incrementDeployedInDB() {
86                 ++deployedInDb;
87         }
88
89         public HeatEnvironment getHeatEnvironment() {
90                 return heatEnvironment;
91         }
92
93         public void setHeatEnvironment(HeatEnvironment heatEnvironment) {
94                 this.heatEnvironment=heatEnvironment;           
95         }
96         
97 }