01: /**
02: * $Id: IWAYConfigConstants.java,v 1.1 2005/03/14 09:21:13 nk137934 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.iwayutil.config;
14:
15: /**
16: * This interface provides constants to define IWay
17: * configuration properties
18: * @author nk137934
19: */
20: interface IWAYConfigConstants {
21:
22: String IWAY_CONFIG_FILE_NAME = "iwayconfig";
23: String IWAY_HOME_DIR = "iway.homeDir";
24: String IWAY_CONFIG_DIR = "iway.configDir";
25: String IWAY_DEBUG_LEVEL = "iway.debugLevel";
26: String IWAY_ADAPTER_NAME = "iway.adapterName";
27: String IWAY_TARGET_NAME = "iway.targetName";
28: String IWAY_REPOSITORY_URL = "iway.repositoryURL";
29: String IWAY_USER_NAME = "iway.userName";
30: String IWAY_USER_PASSWORD = "iway.userPassword";
31: String IWAY_CONNECTION_TYPE = "iway.connectType";
32: }
|