01: /*
02: * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.sra.admin.context;
07:
08: //
09:
10: public interface AMPropertyContext {
11:
12: public static final String DPRO_VERSION = "com.iplanet.am.version";
13: public static final String PLATFORM_LOCALE = "com.iplanet.am.locale";
14: public static final String USER_NAMING_ATTRIBUTE = "com.sun.identity.authentication.super.user";
15: public static final String JDK_PATH = "com.iplanet.am.jdk.path";
16:
17: public static final String COM_IPLANET_AM_SERVER_PROTOCOL = "com.iplanet.am.server.protocol";
18: public static final String COM_IPLANET_AM_SERVER_HOST = "com.iplanet.am.server.host";
19: public static final String COM_IPLANET_AM_SERVER_PORT = "com.iplanet.am.server.port";
20: public static final String COM_IPLANET_SERVICES_DEBUG_LEVEL = "com.iplanet.services.debug.level";
21:
22: public static final String AM_SERVER_DEPLOY_URI = "com.iplanet.am.services.deploymentDescriptor";
23: public static final String COM_IPLANET_AM_DEFAULTORG = "com.iplanet.am.defaultOrg";
24: public static final String AM_ENCRYPTION_PWD = "am.encryption.pwd";
25:
26: public String getDPROVersion();
27:
28: public String getPlatformLocale();
29:
30: public String getUserNamingAttr();
31:
32: public String getJDKPath();
33:
34: public String getAMServerProtocol();
35:
36: public String getAMServerHost();
37:
38: public String getAMServerPort();
39:
40: public String getAMServerDeployURI();
41:
42: public String getDefaultOrganization();
43:
44: public String getEncryptionKey();
45:
46: public String getDebugLevel();
47: }
|