Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / model / ServiceInstantiationPre1806RequestDetails.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.mso.model;
22
23 import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_EMPTY;
24 import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL;
25 import static org.onap.vid.mso.model.BaseResourceInstantiationRequestDetails.RelatedInstance;
26
27 import com.fasterxml.jackson.annotation.JsonInclude;
28 import java.util.List;
29 import org.apache.commons.lang3.StringUtils;
30 import org.onap.vid.mso.rest.SubscriberInfo;
31
32 public class ServiceInstantiationPre1806RequestDetails extends ServiceInstantiationRequestDetails {
33
34     @JsonInclude(NON_NULL)
35     public final CloudConfiguration cloudConfiguration;
36     @JsonInclude(NON_EMPTY)
37     public final List<RelatedInstance> relatedInstanceList;
38
39     public ServiceInstantiationPre1806RequestDetails(ModelInfo modelInfo, ServiceInstantiationOwningEntity owningEntity,
40                                                      SubscriberInfo subscriberInfo, Project project, RequestInfo requestInfo,
41                                                      RequestParameters requestParameters, CloudConfiguration cloudConfiguration,
42                                                      List<RelatedInstance> relatedInstanceList) {
43         super(modelInfo, owningEntity, subscriberInfo, project, requestInfo, requestParameters);
44         if ((cloudConfiguration != null) && (!StringUtils.isEmpty(cloudConfiguration.getLcpCloudRegionId())) && (!StringUtils.isEmpty(cloudConfiguration.getTenantId()))){
45             this.cloudConfiguration = cloudConfiguration;
46         } else {
47             this.cloudConfiguration = null;
48         }
49         this.relatedInstanceList = relatedInstanceList;
50     }
51 }