Distributing Blueprint to DCAE Dashboard Issue-ID: DCAEGEN2-2385>
[dcaegen2/platform.git] / mod2 / catalog-service / src / main / java / org / onap / dcaegen2 / platform / mod / model / deploymentartifact / DeploymentArtifact.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  org.onap.dcae
4  *  ================================================================================
5  *  Copyright (c) 2020-2021 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.dcaegen2.platform.mod.model.deploymentartifact;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import lombok.Data;
26 import org.onap.dcaegen2.platform.mod.model.policymodel.DistributionInfo;
27 import org.springframework.data.mongodb.core.mapping.Document;
28
29 import java.util.Map;
30
31 /**
32  * A model class which represents Deployment-Artifact entity
33  */
34 @Data
35 @Document("deployment-artifact")
36 public class DeploymentArtifact {
37
38     private String id;
39
40     private Integer version;
41
42     private String content;
43
44     private String fileName;
45
46     private DeploymentArtifactStatus status;
47
48     private Map<String, Object> metadata;
49
50     private MsInstanceInfo msInstanceInfo;
51
52     private Map<String, Object> specificationInfo;
53
54     private DistributionInfo distributionInfo;
55
56 }