01: /**
02: * $Id: SessionAttributeNames.java,v 1.8 2006/06/15 22:34:46 cathywu 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.admin.console.common;
14:
15: public interface SessionAttributeNames {
16:
17: public static final String ATTR_CURRENT_LOCATION_DN = "common.locationdn.current";
18:
19: public static final String ATTR_SELECTED_PORTAL = "fabric.portal.selected";
20:
21: public static final String ATTR_SELECTED_INSTANCE = "fabric.instance.selected";
22:
23: public static final String ATTR_SELECTED_PRODUCER = "producer.selected";
24:
25: public static final String ATTR_RPDS = "producer.rpds";
26:
27: public static final String ATTR_SELECTED_CONSUMER_REGISTRATION = "producer.consumerRegistration.selected";
28:
29: public static final String ATTR_SELECTED_CONFIGURED_PRODUCER = "consumer.configuredProducer.selected";
30:
31: public static final String ATTR_UPM = "consumer.upm";
32:
33: public static final String ATTR_SELECTED_TEMPLATE = "ssoa.template.selected";
34:
35: public static final String ATTR_SELECTED_CONFIG = "ssoa.config.selected";
36:
37: public static final String ATTR_CHANNEL = "channelstatistics.channel.selected";
38:
39: public static final String ATTR_SELECTED_TREE_CHANNEL = "desktop.tree.selected.channel";
40:
41: public static final String ATTR_SELECTED_TREE_CONTAINER = "desktop.tree.selected.container";
42:
43: public static final String ATTR_DESKTOP_MANAGER_RETURN_URL = "desktop.manager.return.url";
44:
45: public static final String ATTR_REGENERATE_CHANNELS = "desktop.delete.channel.regenerate.channels";
46:
47: public static final String ATTR_DELETE_CHANNEL_DISABLED = "desktop.delete.channel.channel.disabled";
48:
49: public static final String ATTR_ISLOCAL = "psconsole.islocal";
50:
51: }
|