KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > Reserved


1 /*
2  * (c) Rob Gordon 2005
3  */

4 package org.oddjob;
5
6 import org.oddjob.arooa.ArooaConstants;
7
8 /**
9  * Where Oddjob uses inspection to control/monitor a component these
10  * are the properties methods it uses.
11  */

12 public class Reserved {
13
14     /**
15      * Identifies a component.
16      */

17     public static final String JavaDoc ID_PROPERTY = ArooaConstants.ID_PROPERTY;
18     
19     /**
20      * This property is the logger name for use in a
21      * LogArchiver.
22      */

23     public static final String JavaDoc TRANSIENT_PROPERTY = "transient";
24
25     /**
26      * This property is the logger name for use in a
27      * LogArchiver.
28      */

29     public static final String JavaDoc LOGGER_PROPERTY = "logger";
30     
31     /**
32      * This property is holds the integer result of a job.
33      */

34     public static final String JavaDoc RESULT_PROPERTY = "result";
35     
36     /**
37      * This property provides a description of the job.
38      */

39     public static final String JavaDoc DESCRIBE_METHOD = "describe";
40     
41     /**
42      * Not implemented yet. The idea that a component can
43      * contain a more detail and that the monitor can zoon into it.
44      */

45     public static final String JavaDoc ZOOM_POINT_PROPERTY = "ojzoompoint";
46 }
47
Popular Tags