Remove restricted notice from TOSCA file
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / NetworkInstantiationCommand.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.Network;
27 import org.onap.vid.mso.model.NetworkInstantiationRequestDetails;
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 NetworkInstantiationCommand extends ResourceInstantiationCommand {
38
39     @Inject
40     private AsyncInstantiationBusinessLogic asyncInstantiationBL;
41
42     @Override
43     protected String getRequestPath() {
44         return asyncInstantiationBL.getNetworkInstantiationPath(commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID));
45     }
46
47     @Override
48     protected RequestDetailsWrapper<NetworkInstantiationRequestDetails> generateMSORequest(JobAdapter.AsyncJobRequest request, String userId) {
49         return asyncInstantiationBL.generateNetworkInstantiationRequest(
50                 (Network) getSharedData().getRequest(),
51                 commandParentData.getModelInfo(CommandDataKey.SERVICE_MODEL_INFO),
52                 commandParentData.getInstanceId(CommandDataKey.SERVICE_INSTANCE_ID),
53                 getSharedData().getUserId()
54         );
55     }
56
57     @Override
58     protected String getJobAuditMSOStatus() {
59         return "NETWORK_REQUESTED";
60     }
61 }