]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/AbstractSpecAttribute.java
Move ReailizedFlow to execution package
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / AbstractSpecAttribute.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
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 package org.argeo.slc.core.execution;
17
18 import java.io.Serializable;
19
20 import org.argeo.slc.execution.ExecutionSpecAttribute;
21
22 /** Canonical implementation of the execution spec attribute booleans. */
23 public abstract class AbstractSpecAttribute implements ExecutionSpecAttribute,
24 Serializable {
25 private static final long serialVersionUID = 6494963738891709440L;
26 private Boolean isImmutable = false;
27 private Boolean isConstant = false;
28 private Boolean isHidden = false;
29
30 /** Has to be set at instantiation */
31 public Boolean getIsImmutable() {
32 return isImmutable;
33 }
34
35 public void setIsImmutable(Boolean isImmutable) {
36 this.isImmutable = isImmutable;
37 }
38
39 /** Cannot be overridden at runtime */
40 public Boolean getIsConstant() {
41 return isConstant;
42 }
43
44 public void setIsConstant(Boolean isConstant) {
45 this.isConstant = isConstant;
46 }
47
48 /** Should not be shown to the end user */
49 public Boolean getIsHidden() {
50 return isHidden;
51 }
52
53 public void setIsHidden(Boolean isHidden) {
54 this.isHidden = isHidden;
55 }
56
57 /*
58 * DEPRECATED
59 */
60 /** @deprecated use {@link #getIsImmutable()} instead */
61 public Boolean getIsParameter() {
62 return isImmutable;
63 }
64
65 /** @deprecated use {@link #getIsConstant()} instead */
66 public Boolean getIsFrozen() {
67 return isConstant;
68 }
69
70 /** @deprecated use {@link #setIsImmutable(Boolean)} instead */
71 public void setIsParameter(Boolean isParameter) {
72 this.isImmutable = isParameter;
73 }
74
75 /** @deprecated use {@link #setIsConstant(Boolean)} instead */
76 public void setIsFrozen(Boolean isFrozen) {
77 this.isConstant = isFrozen;
78 }
79
80 }