01: /**
02: * $Id: ConfigurationConstants.java,v 1.3 2003/07/10 22:18:51 dpolla Exp $
03: * Copyright 2002 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 iPlanet
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.ssoadapter.config;
14:
15: public interface ConfigurationConstants {
16: //
17: // Names of standard config properties...
18: //
19: public static final String PROP_CONFIG_NAME_NAME = "configName";
20: public static final String PROP_CONFIG_DESC_NAME = "configDesc";
21: public static final String PROP_HOST_NAME = "host";
22: public static final String PROP_PROTOCOL_NAME = "protocol";
23: public static final String PROP_UID_NAME = "uid";
24: public static final String PROP_PASSWORD_NAME = "password";
25: public static final String PROP_PORT_NAME = "port";
26: public static final String PROP_UNDEF_PROTOCOL = "undef";
27: public static final String PROP_USER_NAME = "merge";
28: public static final String PROP_DEFAULT_NAME = "default";
29: public static final String PROP_ENCODED_NAME = "encoded";
30:
31: //
32: // Default Client type
33: //
34: public static final String DEFAULT_CLIENT_TYPE = "default";
35:
36: }
|