1
2
3
4
5 package net.sf.wfnm;
6
7 /***
8 * Defines the ownership constants.
9 *
10 * @author <a href="mailto:malbari@users.sourceforge.net">Maurizio Albari</a>
11 * @version 1.0.6
12 */
13 public interface OwnershipConst {
14 /***
15 * The ownership descriptions.
16 */
17 String[] OWNERSHIP_DESC = { "page", "webflow", "previous", "working", "global", "none" };
18
19 /***
20 * Definition of global (first) webflow ownership.
21 */
22 int GLOBAL_OWNERSHIP = 4;
23
24 /***
25 * Definition of no ownership.
26 */
27 int NO_OWNERSHIP = 5;
28
29 /***
30 * Definition of a page ownership.
31 */
32 int PAGE_OWNERSHIP = 0;
33
34 /***
35 * Definition of previous webflow ownership.
36 */
37 int PREVIOUS_OWNERSHIP = 2;
38
39 /***
40 * Definition of current webflow ownership.
41 */
42 int WEBFLOW_OWNERSHIP = 1;
43
44 /***
45 * Definition of working (second) webflow ownership.
46 */
47 int WORKING_OWNERSHIP = 3;
48 }