904dba9bb84252d5aabe8cec7bfc550b8ae87546
[aai/model-loader.git] / src / main / java / org / openecomp / modelloader / entity / model / ModelArtifact.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * MODEL LOADER SERVICE
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.modelloader.entity.model;
22
23 import org.openecomp.modelloader.entity.Artifact;
24
25 import java.util.HashSet;
26 import java.util.Set;
27
28 public class ModelArtifact extends Artifact {
29
30   String nameVersionId;
31   Set<String> referencedModelIds = new HashSet<String>();
32
33   public String getNameVersionId() {
34     return nameVersionId;
35   }
36
37   public void setNameVersionId(String nameVersionId) {
38     this.nameVersionId = nameVersionId;
39   }
40
41   public Set<String> getDependentModelIds() {
42     return referencedModelIds;
43   }
44
45   public void addDependentModelId(String dependentModelId) {
46     this.referencedModelIds.add(dependentModelId);
47   }
48
49   @Override
50   public String toString() {
51     StringBuilder sb = new StringBuilder();
52     sb.append("NameVersId=" + nameVersionId + "(" + getType().toString() + ") ==> ");
53     for (String dep : referencedModelIds) {
54       sb.append(dep + "  ");
55     }
56
57     return sb.toString();
58   }
59
60 }