com.sapportals.portal.prt.pom

Interface IPOMConstants

All Known Subinterfaces:
IComponentNode, IEvent, IModeChangeEvent, INode, IPortalComponentEvent, IPortalNode, IPortalRequestEvent, IProfileValidationEvent
All Known Implementing Classes:
AbstractEvent, AbstractNode

public interface IPOMConstants

This interface gathers some constants used by the POM eventing model


Field Summary
static NodeMode ABOUT_MODE
          Deprecated. use NodeMode.ABOUT_MODE instead
static EventType ABOUT_REQUEST_EVENT
          Deprecated. use EventType.ABOUT_REQUEST_EVENT instead
static EventType ACTION_EVENT
          Deprecated. use EventType.ACTION_EVENT instead
static EventType AFTER_CONTENT_EVENT
          Deprecated. use EventType.AFTER_CONTENT_EVENT instead
static EventType BEFORE_CONTENT_EVENT
          Deprecated. use EventType.BEFORE_CONTENT_EVENT instead
static EventType COMPONENT_EVENT
          Deprecated. use EventType.COMPONENT_EVENT instead
static NodeType COMPONENT_NODE
          Deprecated. use NodeType.COMPONENT_NODE instead
static NodeMode DEFAULT_MODE
          Deprecated. use NodeMode.DEFAULT_MODE instead
static EventType EDIT_ACKNOWLEDGE_EVENT
          Deprecated. use EventType.EDIT_ACKNOWLEDGE_EVENT instead
static NodeMode EDIT_MODE
          Deprecated. use NodeMode.EDIT_MODE instead
static EventType EDIT_REQUEST_EVENT
          Deprecated. use EventType.EDIT_REQUEST_EVENT instead
static NodeMode HELP_MODE
          Deprecated. use NodeMode.HELP_MODE instead
static EventType HELP_REQUEST_EVENT
          Deprecated. use EventType.HELP_REQUEST_EVENT instead
static EventType LOGON_EVENT
          Deprecated. use EventType.LOGON_EVENT instead
static NodeMode LOGON_MODE
          Deprecated. use NodeMode.LOGON_MODE instead
static EventType LOGOUT_EVENT
          Deprecated. use EventType.LOGOUT_EVENT instead
static EventType ON_NODE_READY_EVENT
          Deprecated. use EventType.ON_NODE_READY_EVENT instead
static EventType ON_NODE_REMOVE_EVENT
          Deprecated. use EventType.ON_NODE_REMOVE_EVENT instead
static EventType ON_POM_READY_EVENT
          Deprecated. use EventType.ON_POM_READY_EVENT instead
static NodeType PORTAL_NODE
          Deprecated. use NodeType.PORTAL_NODE instead
static NodeMode PREVIEW_MODE
          Deprecated. use NodeMode.PREVIEW_MODE instead
static EventType PREVIEW_REQUEST_EVENT
          Deprecated. use EventType.PREVIEW_REQUEST_EVENT instead
static NodeMode REFRESH_MODE
          Deprecated. use NodeMode.REFRESH_MODE instead
static EventType REFRESH_REQUEST_EVENT
          Deprecated. use EventType.REFRESH_REQUEST_EVENT instead
static EventType REQUEST_EVENT
          Deprecated. use EventType.REQUEST_EVENT instead
static NodeMode TEST_MODE
          Deprecated. use NodeMode.TEST_MODE instead
 

Field Detail

ON_NODE_READY_EVENT

public static final EventType ON_NODE_READY_EVENT
Deprecated. use EventType.ON_NODE_READY_EVENT instead

Sent when a POM node was attached to its parent. It's a good time to assign its child nodes.

See Also:
EventType.ON_NODE_READY_EVENT

ON_NODE_REMOVE_EVENT

public static final EventType ON_NODE_REMOVE_EVENT
Deprecated. use EventType.ON_NODE_REMOVE_EVENT instead

Sent when a POM node will be removed from its parent. When receiving this event all listener attachements of corresponding components should be released.

See Also:
EventType.ON_NODE_REMOVE_EVENT

ON_POM_READY_EVENT

public static final EventType ON_POM_READY_EVENT
Deprecated. use EventType.ON_POM_READY_EVENT instead

Sent when the POM was build up. This is sent on a pre-order traversal. It is a last chance for the receiving node to modify the POM below it, without breaking the event chain.

See Also:
EventType.ON_POM_READY_EVENT

BEFORE_CONTENT_EVENT

public static final EventType BEFORE_CONTENT_EVENT
Deprecated. use EventType.BEFORE_CONTENT_EVENT instead

Event sent before the content phase of the request cycle starts

See Also:
EventType.BEFORE_CONTENT_EVENT

AFTER_CONTENT_EVENT

public static final EventType AFTER_CONTENT_EVENT
Deprecated. use EventType.AFTER_CONTENT_EVENT instead

Event sent after the content phase of the request cycle has finished

See Also:
EventType.AFTER_CONTENT_EVENT

COMPONENT_EVENT

public static final EventType COMPONENT_EVENT
Deprecated. use EventType.COMPONENT_EVENT instead

Event representing a server-side event.

See Also:
EventType.COMPONENT_EVENT

REQUEST_EVENT

public static final EventType REQUEST_EVENT
Deprecated. use EventType.REQUEST_EVENT instead

Event representing an event specified in the URL used by the client

See Also:
EventType.REQUEST_EVENT

ACTION_EVENT

public static final EventType ACTION_EVENT
Deprecated. use EventType.ACTION_EVENT instead

Event representing an action event

See Also:
EventType.ACTION_EVENT

LOGON_EVENT

public static final EventType LOGON_EVENT
Deprecated. use EventType.LOGON_EVENT instead

Event representing a logon action

See Also:
EventType.LOGON_EVENT

LOGOUT_EVENT

public static final EventType LOGOUT_EVENT
Deprecated. use EventType.LOGOUT_EVENT instead

Event representing a logout action

See Also:
EventType.LOGOUT_EVENT

EDIT_REQUEST_EVENT

public static final EventType EDIT_REQUEST_EVENT
Deprecated. use EventType.EDIT_REQUEST_EVENT instead

Event representing a request for personalization

See Also:
EventType.EDIT_REQUEST_EVENT

EDIT_ACKNOWLEDGE_EVENT

public static final EventType EDIT_ACKNOWLEDGE_EVENT
Deprecated. use EventType.EDIT_ACKNOWLEDGE_EVENT instead

Event representing an acknowledgement for a personalization event

See Also:
EventType.EDIT_ACKNOWLEDGE_EVENT

PREVIEW_REQUEST_EVENT

public static final EventType PREVIEW_REQUEST_EVENT
Deprecated. use EventType.PREVIEW_REQUEST_EVENT instead

Event representing a request for a preview

See Also:
EventType.PREVIEW_REQUEST_EVENT

REFRESH_REQUEST_EVENT

public static final EventType REFRESH_REQUEST_EVENT
Deprecated. use EventType.REFRESH_REQUEST_EVENT instead

Event representing a request for a preview

See Also:
EventType.REFRESH_REQUEST_EVENT

ABOUT_REQUEST_EVENT

public static final EventType ABOUT_REQUEST_EVENT
Deprecated. use EventType.ABOUT_REQUEST_EVENT instead

Event representing a request for an "about" information

See Also:
EventType.ABOUT_REQUEST_EVENT

HELP_REQUEST_EVENT

public static final EventType HELP_REQUEST_EVENT
Deprecated. use EventType.HELP_REQUEST_EVENT instead

Event representing a request for a "help" information

See Also:
EventType.HELP_REQUEST_EVENT

COMPONENT_NODE

public static final NodeType COMPONENT_NODE
Deprecated. use NodeType.COMPONENT_NODE instead

Describes a node directly related to a standard component.

See Also:
NodeType.COMPONENT_NODE

PORTAL_NODE

public static final NodeType PORTAL_NODE
Deprecated. use NodeType.PORTAL_NODE instead

Describes a root/portal node.
The Portal Object Model must hold exactly one node of this type.

See Also:
NodeType.PORTAL_NODE

DEFAULT_MODE

public static final NodeMode DEFAULT_MODE
Deprecated. use NodeMode.DEFAULT_MODE instead

Describes the default node mode

See Also:
NodeMode.DEFAULT_MODE

PREVIEW_MODE

public static final NodeMode PREVIEW_MODE
Deprecated. use NodeMode.PREVIEW_MODE instead

Describes the preview node mode

See Also:
NodeMode.PREVIEW_MODE

REFRESH_MODE

public static final NodeMode REFRESH_MODE
Deprecated. use NodeMode.REFRESH_MODE instead

Describes the refresh node mode

See Also:
NodeMode.REFRESH_MODE

EDIT_MODE

public static final NodeMode EDIT_MODE
Deprecated. use NodeMode.EDIT_MODE instead

Describes the personalization node mode

See Also:
NodeMode.EDIT_MODE

ABOUT_MODE

public static final NodeMode ABOUT_MODE
Deprecated. use NodeMode.ABOUT_MODE instead

Describes the "about" node mode

See Also:
NodeMode.ABOUT_MODE

HELP_MODE

public static final NodeMode HELP_MODE
Deprecated. use NodeMode.HELP_MODE instead

Describes the "about" node mode

See Also:
NodeMode.HELP_MODE

TEST_MODE

public static final NodeMode TEST_MODE
Deprecated. use NodeMode.TEST_MODE instead

Describes the "test" node mode

See Also:
NodeMode.TEST_MODE

LOGON_MODE

public static final NodeMode LOGON_MODE
Deprecated. use NodeMode.LOGON_MODE instead

Describes the "logon" node mode Be careful, the logon mode is very particular : the context for the mode logon is the same as the one for the default mode.

See Also:
NodeMode.LOGON_MODE


Copyright 2006 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Microsoft, Windows, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Sun Microsystems, Inc. JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. MaxDB is a trademark of MySQL AB, Sweden. SAP, R/3, mySAP, mySAP.com, xApps, xApp, SAP NetWeaver, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.