]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/msg/process/SlcExecutionStepsRequest.java
Unique launch
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / msg / process / SlcExecutionStepsRequest.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.msg.process;
18
19 import java.io.Serializable;
20 import java.util.ArrayList;
21 import java.util.List;
22
23 import org.argeo.slc.execution.ExecutionStep;
24 import org.argeo.slc.process.SlcExecutionStep;
25
26 @Deprecated
27 public class SlcExecutionStepsRequest implements Serializable {
28 private static final long serialVersionUID = 6243880315234605390L;
29 private String slcExecutionUuid;
30 private List<SlcExecutionStep> steps = new ArrayList<SlcExecutionStep>();
31
32 public SlcExecutionStepsRequest() {
33
34 }
35
36 public SlcExecutionStepsRequest(String slcExecutionUuid,
37 List<ExecutionStep> steps) {
38 this.slcExecutionUuid = slcExecutionUuid;
39 for (ExecutionStep step : steps) {
40 this.steps.add((SlcExecutionStep) step);
41 }
42 }
43
44 public SlcExecutionStepsRequest(String slcExecutionUuid, ExecutionStep step) {
45 this.slcExecutionUuid = slcExecutionUuid;
46 List<SlcExecutionStep> steps = new ArrayList<SlcExecutionStep>();
47 steps.add((SlcExecutionStep) step);
48 this.steps = steps;
49 }
50
51 public String getSlcExecutionUuid() {
52 return slcExecutionUuid;
53 }
54
55 public void setSlcExecutionUuid(String slcExecutionUuid) {
56 this.slcExecutionUuid = slcExecutionUuid;
57 }
58
59 public List<SlcExecutionStep> getSteps() {
60 return steps;
61 }
62
63 public void setSteps(List<SlcExecutionStep> step) {
64 this.steps = step;
65 }
66
67 public void addStep(SlcExecutionStep step) {
68 steps.add(step);
69 }
70
71 @Override
72 public String toString() {
73 return getClass().getSimpleName() + "#" + slcExecutionUuid + " "
74 + steps;
75 }
76 }