01: /**
02: * $Id: PortalAttributes.java,v 1.4 2005/09/15 10:29:06 jj154728 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 (site).
17: */
18: public interface PortalAttributes {
19: /**
20: * Name of a portal.
21: */
22: public static final String NAME = "Name";
23:
24: /**
25: * Description of a portal.
26: */
27: public static final String DESCRIPTION = "Description";
28:
29: /**
30: * Web applications deployed in a portal.
31: */
32: public static final String DEPLOYED_WEB_APPS = "DeployedWebApps";
33:
34: /**
35: * The uri at which the portal webapp is deployed
36: */
37: public static final String PORTAL_URI = "PortalWebAppUri";
38:
39: /**
40: * Web Container Configuration Data
41: */
42: public static final String WEB_CONTAINER_CONFIG_DATA = "WebContainerConfigData";
43: }
|