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