X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fstructure%2FStructureRegistry.java;fp=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fstructure%2FStructureRegistry.java;h=ed0fa592394a15d230947ea9d34742899d84689c;hb=90b484c35a563691c0923011bb43e2a881db2d5e;hp=6461ee5b94dc27eabc67d3a7fe3b7f16088706bb;hpb=77ed5d40c10f8e8e788382ed0da1f3e4a1c31958;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java index 6461ee5b9..ed0fa5923 100644 --- a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java +++ b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java @@ -9,7 +9,7 @@ public interface StructureRegistry { /** All mode: everything is executed regardless of the active paths. */ public static String ALL = "ALL"; /** Active mode: only the active paths are executed. */ - public static String ACTIVE = "ACTIVE"; + public static String ACTIVE = "STATUS_ACTIVE"; /** Adds an element to the registry. */ public void register(StructurePath path, StructureElement element); @@ -28,7 +28,7 @@ public interface StructureRegistry { * * @see #READ * @see #ALL - * @see #ACTIVE + * @see #STATUS_ACTIVE */ public void setMode(String mode); @@ -37,19 +37,19 @@ public interface StructureRegistry { * * @see #READ * @see #ALL - * @see #ACTIVE + * @see #STATUS_ACTIVE */ public String getMode(); /** * Gets the list of active paths, which will be run if executed in - * ACTIVE mode. + * STATUS_ACTIVE mode. */ public List getActivePaths(); /** * Sets the list of active path, which will be run if executed in - * ACTIVE mode. + * STATUS_ACTIVE mode. */ public void setActivePaths(List activePaths); }