Remove restricted notice from TOSCA file
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / VnfInstantiationCommand.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.Job;
25 import org.onap.vid.job.JobAdapter;
26 import org.onap.vid.job.NextCommand;
27 import org.onap.vid.job.command.CommandParentData.CommandDataKey;
28 import org.onap.vid.model.serviceInstantiation.Vnf;
29 import org.onap.vid.mso.model.VnfInstantiationRequestDetails;
30 import org.onap.vid.services.AsyncInstantiationBusinessLogic;
31 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
32 import org.springframework.context.annotation.Scope;
33 import org.springframework.stereotype.Component;
34
35 import javax.inject.Inject;
36
37 @Component
38 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
39 public class VnfInstantiationCommand extends ResourceInstantiationCommand {
40
41     @Inject
42     private AsyncInstantiationBusinessLogic asyncInstantiationBL;
43
44     @Override
45     protected String getRequestPath() {
46         return asyncInstantiationBL.getVnfInstantiationPath( commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID));
47     }
48
49     @Override
50     protected RequestDetailsWrapper<VnfInstantiationRequestDetails> generateMSORequest(JobAdapter.AsyncJobRequest request, String userId) {
51         return asyncInstantiationBL.generateVnfInstantiationRequest(
52                 (Vnf) getSharedData().getRequest(),
53                 commandParentData.getModelInfo(CommandDataKey.SERVICE_MODEL_INFO),
54                 commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID),
55                 getSharedData().getUserId()
56         );
57     }
58
59     @Override
60     protected String getJobAuditMSOStatus() {
61         return "VNF_REQUESTED";
62     }
63
64     @Override
65     protected NextCommand getNextCommand(String requestId, String instanceId) {
66         return new NextCommand(Job.JobStatus.RESOURCE_IN_PROGRESS,
67                 new VnfInProgressStatusCommand(getSharedData(), requestId, instanceId, commandParentData));
68     }
69
70 }