1 18 19 package cowsultants.itracker.ejb.client.util; 20 21 22 25 public interface AuthenticationConstants { 26 28 public static final int AUTH_TYPE_UNKNOWN = -1; 29 30 public static final int AUTH_TYPE_PASSWORD_PLAIN = 1; 31 33 public static final int AUTH_TYPE_PASSWORD_ENC = 2; 34 36 public static final int AUTH_TYPE_SHARED_SECRET = 3; 37 39 public static final int AUTH_TYPE_CERTIFICATE = 4; 40 42 public static final int AUTH_TYPE_REQUEST = 5; 43 44 45 public static final int UPDATE_TYPE_CORE = 1; 46 47 public static final int UPDATE_TYPE_PERMISSION_SET = 2; 48 49 public static final int UPDATE_TYPE_PERMISSION_ADD = 3; 50 51 public static final int UPDATE_TYPE_PREFERENCE = 4; 52 53 54 55 56 public static final int REQ_SOURCE_UNKNOWN = -1; 57 58 public static final int REQ_SOURCE_WEB = 1; 59 60 public static final int REQ_SOURCE_API = 2; 61 } 62 | Popular Tags |