]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/msg/process/SlcExecutionStepsRequest.java
Improve JCR integration
[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 import java.util.Vector;
23
24 import org.argeo.slc.process.SlcExecutionStep;
25
26 public class SlcExecutionStepsRequest implements Serializable {
27 private static final long serialVersionUID = 6243880315234605390L;
28 private String slcExecutionUuid;
29 private List<SlcExecutionStep> steps = new ArrayList<SlcExecutionStep>();
30
31 public SlcExecutionStepsRequest() {
32
33 }
34
35 public SlcExecutionStepsRequest(String slcExecutionUuid,
36 List<SlcExecutionStep> steps) {
37 this.slcExecutionUuid = slcExecutionUuid;
38 this.steps = steps;
39 }
40
41 public SlcExecutionStepsRequest(String slcExecutionUuid,
42 SlcExecutionStep step) {
43 this.slcExecutionUuid = slcExecutionUuid;
44 List<SlcExecutionStep> steps = new Vector<SlcExecutionStep>();
45 steps.add(step);
46 this.steps = steps;
47 }
48
49 public String getSlcExecutionUuid() {
50 return slcExecutionUuid;
51 }
52
53 public void setSlcExecutionUuid(String slcExecutionUuid) {
54 this.slcExecutionUuid = slcExecutionUuid;
55 }
56
57 public List<SlcExecutionStep> getSteps() {
58 return steps;
59 }
60
61 public void setSteps(List<SlcExecutionStep> step) {
62 this.steps = step;
63 }
64
65 public void addStep(SlcExecutionStep step) {
66 steps.add(step);
67 }
68
69 @Override
70 public String toString() {
71 return getClass().getSimpleName() + "#" + slcExecutionUuid + " "
72 + steps;
73 }
74 }