Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / serviceInstantiation / InstanceGroup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.model.serviceInstantiation;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import org.onap.vid.job.JobAdapter;
25 import org.onap.vid.job.JobType;
26 import org.onap.vid.mso.model.ModelInfo;
27
28 import java.util.Collection;
29 import java.util.Collections;
30 import java.util.Map;
31
32 public class InstanceGroup extends BaseResource implements JobAdapter.AsyncJobRequest {
33
34     private final  Map<String, InstanceGroupMember> vnfGroupMembers;
35
36     public InstanceGroup(@JsonProperty("modelInfo") ModelInfo modelInfo,
37                          @JsonProperty("instanceName") String instanceName,
38                          @JsonProperty("action") String action,
39                          @JsonProperty("rollbackOnFailure") boolean rollbackOnFailure,
40                          @JsonProperty("instanceId") String instanceId,
41                          @JsonProperty("vnfs") Map<String, InstanceGroupMember> vnfGroupMembers,
42                          @JsonProperty("trackById") String trackById,
43                          @JsonProperty("isFailed") Boolean isFailed,
44                          @JsonProperty("statusMessage") String statusMessage) {
45
46         super(modelInfo, instanceName, action, null, null, null, null, rollbackOnFailure, instanceId, trackById, isFailed, statusMessage);
47         this.vnfGroupMembers = vnfGroupMembers;
48     }
49
50     @Override
51     protected String getModelType() {
52         return "instanceGroup";
53     }
54
55     @Override
56     public Collection<InstanceGroupMember> getChildren() {
57         return getVnfGroupMembers().values();
58     }
59
60     public Map<String, InstanceGroupMember> getVnfGroupMembers() {
61         return vnfGroupMembers == null ? Collections.emptyMap() : vnfGroupMembers;
62     }
63
64     @Override
65     public JobType getJobType() {
66         return JobType.InstanceGroup;
67     }
68 }