Replaced all tabs with spaces in java and pom.xml
[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 import org.onap.so.db.catalog.beans.HeatEnvironment;
26 import org.onap.so.db.catalog.beans.HeatFiles;
27 import org.onap.so.db.catalog.beans.HeatTemplate;
28 import org.onap.sdc.api.notification.IArtifactInfo;
29 import org.onap.sdc.api.results.IDistributionClientDownloadResult;
30
31 /**
32  * The structure that contains the artifactInfo and its associated DownloadedResult.
33  *
34  */
35 public final class VfModuleArtifact {
36     private final IArtifactInfo artifactInfo;
37     private int deployedInDb = 0;
38     private final String result;
39     private HeatFiles heatFiles;
40     private HeatTemplate heatTemplate;
41     private HeatEnvironment heatEnvironment;
42
43     public VfModuleArtifact(IArtifactInfo artifactinfo, IDistributionClientDownloadResult clientResult)
44             throws UnsupportedEncodingException {
45         this(artifactinfo, clientResult, null);
46     }
47
48     public VfModuleArtifact(IArtifactInfo artifactinfo, IDistributionClientDownloadResult clientResult,
49             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 }