source: fedd/abac-src/rtml/src/edu/stanford/rt/util/Constants.java @ 8780cbec

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since 8780cbec was 8780cbec, checked in by Jay Jacobs <Jay.Jacobs@…>, 15 years ago

ABAC sources from Cobham

  • Property mode set to 100644
File size: 1.1 KB
Line 
1package edu.stanford.rt.util;
2
3/**
4 * @author Ninghui Li, Sandra Qiu <br>
5 *
6 * This interface defines non-XML constants.
7 */
8public interface Constants
9{
10    /* traces type related */
11    public static final int ISSUER_TRACES_ALL = 0;
12    public static final int ISSUER_TRACES_DEF = 1;
13    public static final int ISSUER_TRACES_RULE = 2;
14    public static final int ISSUER_TRACES_NONE = 3;
15    public static final int SUBJECT_TRACES_ALL = 4;
16    public static final int SUBJECT_TRACES_FACT = 5;
17    public static final int SUBJECT_TRACES_NONE = 6;
18   
19
20    //other
21    public static final String COLON = ":";
22    public static final String INDENT = "    ";
23
24    // Exception msg
25    public static final String missing_attr_value = 
26        "No value specified for the required attribute ";
27    public static final String improper_sub_element_for = 
28        "Improper sub-element for element ";
29    public static final String illegal_value_for = 
30        "Illegal value for ";
31    public static final String no_support_for = 
32        "No support for element ";
33}
Note: See TracBrowser for help on using the repository browser.