Remove restricted notice from TOSCA file
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / InstanceGroupInstantiationCommand.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.job.command;//package org.onap.vid.job.command;
22
23 import org.onap.vid.changeManagement.RequestDetailsWrapper;
24 import org.onap.vid.job.JobAdapter;
25 import org.onap.vid.job.command.CommandParentData.CommandDataKey;
26 import org.onap.vid.model.Action;
27 import org.onap.vid.model.serviceInstantiation.InstanceGroup;
28 import org.onap.vid.mso.model.InstanceGroupInstantiationRequestDetails;
29 import org.onap.vid.services.AsyncInstantiationBusinessLogic;
30 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
31 import org.springframework.context.annotation.Scope;
32 import org.springframework.stereotype.Component;
33
34 import javax.inject.Inject;
35
36 @Component
37 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
38 public class InstanceGroupInstantiationCommand extends ResourceInstantiationCommand {
39
40     @Inject
41     private AsyncInstantiationBusinessLogic asyncInstantiationBL;
42
43     @Override
44     protected String getRequestPath() {
45         return asyncInstantiationBL.getInstanceGroupInstantiationPath();
46     }
47
48     @Override
49     protected RequestDetailsWrapper<InstanceGroupInstantiationRequestDetails> generateMSORequest(JobAdapter.AsyncJobRequest request, String userId) {
50         return asyncInstantiationBL.generateInstanceGroupInstantiationRequest(
51                 (InstanceGroup) getSharedData().getRequest(),
52                 commandParentData.getModelInfo(CommandDataKey.SERVICE_MODEL_INFO),
53                 commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID),
54                 getSharedData().getUserId()
55         );
56     }
57
58     @Override
59     protected String getJobAuditMSOStatus() {
60         return "INSTANCE_GROUP_REQUESTED";
61     }
62
63     @Override
64     protected boolean shouldInstantiateMyself() {
65         return Action.Create == ((InstanceGroup) getSharedData().getRequest()).getAction();
66     }
67 }