]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionFlowDescriptor.java
Improve JCR integration
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionFlowDescriptor.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.execution;
18
19 import java.io.Serializable;
20 import java.util.Map;
21
22 /**
23 *
24 * Implements both archetype and implementation of a given process.
25 *
26 * At specification time, <code>executionSpec</code> represents the spec of the
27 * parameters accepted by the process, with, among others: type, default value
28 * and, optionally, possible values for each parameter. Thus ExecutionSpec might
29 * be a huge object. Note that when marshalling only a reference to a specific
30 * ExecutionSpec is stored in the XML to optimize performance and avoid
31 * redundancy between various ExecutionFlowDesciptor that might have the same
32 * ExecutionSpec.
33 *
34 * At runtime, we build a RealizedFlow which references an
35 * ExecutionFlowDescriptor. As it happens AFTER marshalling / unmarshalling
36 * process, the ExecutionSpec is null but we manage to retrieve the
37 * ExecutionSpec and store it in the RealizedFlow, whereas set values of the
38 * parameters are stored in the <code>values</code> map.
39 *
40 * Generally, values object are either a <code>PrimitiveAccessor</code> or a
41 * <code>RefValue</code> but can be other objects.
42 */
43 public class ExecutionFlowDescriptor implements Serializable {
44 private static final long serialVersionUID = 7101944857038041216L;
45 private String name;
46 private String description;
47 private String path;
48 private Map<String, Object> values;
49 private ExecutionSpec executionSpec;
50
51 public ExecutionFlowDescriptor() {
52 }
53
54 public ExecutionFlowDescriptor(String name, Map<String, Object> values,
55 ExecutionSpec executionSpec) {
56 this.name = name;
57 this.values = values;
58 this.executionSpec = executionSpec;
59 }
60
61 public String getName() {
62 return name;
63 }
64
65 /**
66 * @deprecated will be removed in SLC 2.0, the path should be the part of
67 * the name with '/'
68 */
69 public String getPath() {
70 return path;
71 }
72
73 /**
74 * @deprecated will be removed in SLC 2.0, the path should be the part of
75 * the name with '/'
76 */
77 public void setPath(String path) {
78 this.path = path;
79 }
80
81 public Map<String, Object> getValues() {
82 return values;
83 }
84
85 public ExecutionSpec getExecutionSpec() {
86 return executionSpec;
87 }
88
89 public void setName(String name) {
90 this.name = name;
91 }
92
93 public void setValues(Map<String, Object> values) {
94 this.values = values;
95 }
96
97 public void setExecutionSpec(ExecutionSpec executionSpec) {
98 this.executionSpec = executionSpec;
99 }
100
101 public String getDescription() {
102 return description;
103 }
104
105 public void setDescription(String description) {
106 this.description = description;
107 }
108
109 @Override
110 public boolean equals(Object obj) {
111 if (obj instanceof ExecutionFlowDescriptor)
112 return name.equals(((ExecutionFlowDescriptor) obj).getName());
113 return false;
114 }
115
116 @Override
117 public int hashCode() {
118 return name.hashCode();
119 }
120
121 @Override
122 public String toString() {
123 return (path != null && !path.trim().equals("") ? path + "/" : "")
124 + name;
125 }
126
127 }