blob: 70b9f00a8cd2e51967988155cb2c5945633b0cc6 [file] [log] [blame]
Aharoni, Pavel (pa0916)8c70f072018-11-18 00:07:12 +02001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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 */
20package org.onap.osam.job.command;
21
22import org.onap.osam.job.dao.job.JobStatus;
23import org.onap.osam.job.NextCommand;
24import org.onap.osam.job.impl.JobSharedData;
25import org.springframework.beans.factory.config.ConfigurableBeanFactory;
26import org.springframework.context.annotation.Scope;
27import org.springframework.stereotype.Component;
28
29import java.util.List;
30import java.util.UUID;
31
32@Component
33@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
34public class WatchingCommand extends BaseWatchingCommand {
35
36 public WatchingCommand() {}
37
38 public WatchingCommand(JobSharedData sharedData, List<UUID> childrenJobsIds, boolean isRoot) {
39 super(sharedData, childrenJobsIds, isRoot);
40 }
41
42 protected NextCommand getNextCommand(boolean isAllChildrenFinal, boolean hasFailedChild) {
43 if (isAllChildrenFinal) {
44 JobStatus jobStatus = hasFailedChild ? JobStatus.COMPLETED_WITH_ERRORS : JobStatus.COMPLETED;
45 return new NextCommand(jobStatus);
46 } else {
47 if (isRoot) {
48 return new NextCommand(JobStatus.IN_PROGRESS, this);
49 }
50 return new NextCommand(JobStatus.RESOURCE_IN_PROGRESS, this);
51 }
52 }
53
54}