Update license headers
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / model / InstanceGroupInstantiationRequestDetails.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 com.fasterxml.jackson.annotation.JsonProperty;
24
25 import java.util.List;
26
27 /* Based on this model:
28
29 //{
30 //  "requestDetails": {
31 //    "modelInfo": {
32 //      "modelType": "instanceGroup",
33 //      "modelVersionId": "ddcbbf3d-f2c1-4ca0-8852-76a807285efc"
34 //    },
35 //    "requestInfo": {
36 //      "source": "VID",
37 //      "requestorId": "az2016"
38 //    },
39 //    "relatedInstanceList": [
40 //      {
41 //        "relatedInstance": {
42 //          "instanceId": "{the relate-to/parent serviceInstanceId}",
43 //          "modelInfo": {
44 //            "modelType": "service",
45 //           "modelVersionId": "b3b7e7d3-ecb9-4a91-8f6d-e60d236e8e77",
46 //          }
47 //        }
48 //      }
49 //    ],
50 //    "requestParameters": {
51 //      "userParams": []
52 //    }
53 //  }
54 //}
55
56  */
57
58 public class InstanceGroupInstantiationRequestDetails extends BaseResourceInstantiationRequestDetails {
59
60     public InstanceGroupInstantiationRequestDetails(@JsonProperty(value = "modelInfo", required = true) ModelInfo modelInfo,
61                                                     @JsonProperty(value = "requestInfo", required = true) RequestInfo requestInfo,
62                                                     @JsonProperty(value = "relatedInstanceList", required = true) List<RelatedInstance> relatedInstanceList,
63                                                     @JsonProperty(value = "requestParameters", required = true) RequestParameters requestParameters)
64     {
65         super(modelInfo, null, requestInfo, null, null, relatedInstanceList, requestParameters);
66     }
67 }
68