4b81a9412d8e66708ce23f14683bab66fa47f152
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / BaseRootCommand.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.job.NextCommand;
24 import org.onap.vid.job.impl.JobSharedData;
25 import org.onap.vid.model.RequestReferencesContainer;
26 import org.onap.vid.model.serviceInstantiation.ServiceInstantiation;
27 import org.onap.vid.mso.RestObject;
28
29 import javax.inject.Inject;
30
31
32 public abstract class BaseRootCommand extends CommandBase{
33
34     @Inject
35     private MsoResultHandlerService msoResultHandlerService;
36
37     @Override
38     protected CommandBase init(JobSharedData sharedData) {
39         super.init(sharedData);
40         return this;
41     }
42
43     protected ServiceInstantiation getRequest() {
44         return msoResultHandlerService.getRequest(getSharedData());
45     }
46
47     protected NextCommand handleRootResponse(RestObject<RequestReferencesContainer> msoResponse){
48         MsoResult msoResult = msoResultHandlerService.handleRootResponse(getSharedData().getJobUuid(), msoResponse);
49         return new NextCommand(msoResult.getJobStatus(),
50                 (msoResult.getMsoResourceIds()!=null) ?
51                         new ServiceInProgressStatusCommand(getSharedData(), msoResult.getMsoResourceIds()) :
52                         null
53         );
54
55     }
56
57     protected NextCommand handleCommandFailed() {
58         return new NextCommand(msoResultHandlerService.handleRootCommandFailed(getSharedData().getJobUuid()).getJobStatus());
59     }
60
61 }