01: /**
02: * $Id: DomainAttributes.java,v 1.3 2006/04/03 07:45:17 yue Exp $
03: * Copyright 2004 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.common;
14:
15: /**
16: * This interface describes the attributes of a portal domain.
17: */
18: public interface DomainAttributes {
19: /**
20: * Name of a portal domain.
21: */
22: public static final String NAME = "Name";
23:
24: /**
25: * Description of a portal domain.
26: */
27: public static final String DESCRIPTION = "Description";
28:
29: /**
30: * Hosts where Portal Server in a portal domain has been installed on.
31: */
32: public static final String INSTALLED_HOSTS = "InstalledHosts";
33:
34: /**
35: * Hosts where Portal Admin Server instances in a portal domain
36: * are running on.
37: */
38: public static final String HOST = "Host";
39:
40: /**
41: * The Access Manager LDAP user password of a portal domain.
42: */
43: public static final String AM_LDAP_USER_PASSWORD = "AMLDAPUserPassword";
44: }
|