Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / serviceInstantiation / Network.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
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.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.List;
31 import java.util.Map;
32
33 public class Network extends BaseResource implements JobAdapter.AsyncJobRequest {
34
35         private final String productFamilyId;
36
37         private final String platformName;
38
39         private final String lineOfBusiness;
40
41         public Network(@JsonProperty("modelInfo") ModelInfo modelInfo,
42                                    @JsonProperty("productFamilyId") String productFamilyId,
43                                    @JsonProperty("instanceName") String instanceName,
44                                    @JsonProperty("action") String action,
45                                    @JsonProperty("platformName") String platformName,
46                                    @JsonProperty("lcpCloudRegionId") String lcpCloudRegionId,
47                                    @JsonProperty("legacyRegion") String legacyRegion,
48                                    @JsonProperty("tenantId") String tenantId,
49                                    @JsonProperty("instanceParams") List<Map<String, String>> instanceParams,
50                                    @JsonProperty("lineOfBusinessName") String lineOfBusiness,
51                                    @JsonProperty("rollbackOnFailure") boolean rollbackOnFailure,
52                                    @JsonProperty("instanceId") String instanceId,
53                                    @JsonProperty("trackById") String trackById,
54                                    @JsonProperty("isFailed") Boolean isFailed,
55                                    @JsonProperty("statusMessage") String statusMessage) {
56
57                 super(modelInfo, instanceName, action, lcpCloudRegionId, legacyRegion, tenantId, instanceParams, rollbackOnFailure, instanceId, trackById, isFailed, statusMessage);
58                 this.productFamilyId = productFamilyId;
59                 this.platformName = platformName;
60                 this.lineOfBusiness = lineOfBusiness;
61         }
62
63         public String getProductFamilyId() {
64                 return productFamilyId;
65         }
66
67         public String getPlatformName() {
68                 return platformName;
69         }
70
71         public String getLineOfBusiness() {
72                 return lineOfBusiness;
73         }
74
75         @Override
76         protected String getModelType() {
77                 return "network";
78         }
79
80         @Override
81         public Collection<BaseResource> getChildren() {
82                 return Collections.emptyList();
83         }
84
85         @Override
86         public JobType getJobType() {
87                 return JobType.NetworkInstantiation;
88         }
89
90 }