Remove restricted notice from TOSCA file
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / VfmoduleInstantiationCommand.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;
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.serviceInstantiation.VfModule;
27 import org.onap.vid.mso.model.VfModuleInstantiationRequestDetails;
28 import org.onap.vid.services.AsyncInstantiationBusinessLogic;
29 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
30 import org.springframework.context.annotation.Scope;
31 import org.springframework.stereotype.Component;
32
33 import javax.inject.Inject;
34
35 @Component
36 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
37 public class VfmoduleInstantiationCommand extends ResourceInstantiationCommand {
38     @Inject
39     private AsyncInstantiationBusinessLogic asyncInstantiationBL;
40
41     @Override
42     protected String getRequestPath() {
43         return asyncInstantiationBL.getVfmoduleInstantiationPath(commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID),commandParentData.getInstanceId(CommandDataKey.VNF_INSTANCE_ID));
44     }
45
46     @Override
47     protected RequestDetailsWrapper<VfModuleInstantiationRequestDetails> generateMSORequest(JobAdapter.AsyncJobRequest request, String userId) {
48         return asyncInstantiationBL.generateVfModuleInstantiationRequest(
49                 (VfModule) getSharedData().getRequest(),
50                 commandParentData.getModelInfo(CommandDataKey.SERVICE_MODEL_INFO),
51                 commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID),
52                 commandParentData.getModelInfo(CommandDataKey.VNF_MODEL_INFO),
53                 commandParentData.getInstanceId(CommandDataKey.VNF_INSTANCE_ID),
54                 commandParentData.getInstanceId(CommandDataKey.VG_INSTANCE_ID),
55                  getSharedData().getUserId()
56         );
57     }
58
59     @Override
60     protected String getJobAuditMSOStatus() {
61         return "VF_MODULE_REQUESTED";
62     }
63
64 }