01: /**
02: * $Id: ISraBean.java,v 1.5 2005/10/18 11:19:15 ss150821 Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.admin.console.sra;
14:
15: public interface ISraBean {
16:
17: public static final int PERSISTENT_FILE_STORE = 1;
18:
19: public static final int PERSISTENT_LDAP_STORE = 2;
20:
21: public static final String EMPTY_STRING = "";
22:
23: boolean SHOW = true;
24:
25: boolean HIDE = false;
26:
27: int SRA_INSTANCE_TYPE_GATEWAY = 1;
28:
29: int SRA_INSTANCE_TYPE_NETLET_PROXY = 2;
30:
31: int SRA_INSTANCE_TYPE_REWRITER_PROXY = 3;
32:
33: String AMADMIN_PASSWORD = "admin123";
34:
35: String AMADMIN_USERNAME = "amadmin";
36:
37: String STRING = String.class.getName();
38:
39: public static final String COS_PRIORITY = "priority";
40:
41: public static final String RB_NAME = "sra";
42:
43: }
|