Change the header to SO
[so.git] / asdc-controller / src / main / java / org / openecomp / mso / 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.openecomp.mso.asdc.installer;
22
23
24 import java.io.UnsupportedEncodingException;
25
26 import org.openecomp.sdc.api.notification.IArtifactInfo;
27 import org.openecomp.sdc.api.results.IDistributionClientDownloadResult;
28
29 /**
30  * The structure that contains the artifactInfo and its associated DownloadedResult. 
31  *
32  */
33 public final class VfModuleArtifact {
34         private final IArtifactInfo artifactInfo;
35         private int deployedInDb=0;
36         private final String result;
37                 
38         private Object catalogObject;   
39                 
40         public VfModuleArtifact(IArtifactInfo artifactinfo,IDistributionClientDownloadResult clientResult) throws UnsupportedEncodingException {
41                 artifactInfo=artifactinfo;
42                 result = new String(clientResult.getArtifactPayload(), "UTF-8");
43                 
44         }
45
46         public Object getCatalogObject() {
47                 return catalogObject;
48         }
49
50         public void setCatalogObject(Object catalogObject) {
51                 this.catalogObject = catalogObject;
52         }
53
54         public IArtifactInfo getArtifactInfo() {
55                 return artifactInfo;
56         }
57
58         public String getResult() {
59                 return result;
60         }
61
62         public int getDeployedInDb() {
63                 return deployedInDb;
64         }
65
66         public void incrementDeployedInDB() {
67                 ++deployedInDb;
68         }
69         
70 }