com.iplanet.jato.view
Interface WebActions

All Known Subinterfaces:
ViewBean, WebActionHandler

public interface WebActions

Constants describing high-level, value-added JATO behaviors called web actions. Web actions are handled by views that implement the WebActionHandler interface.

Version:
JATO/1.2.2 $Id: WebActions.java,v 1.5 2002/03/16 03:26:42 todd Exp $

Field Summary
static int ACTION_CLEAR
          Execute no models, resulting in a blank resulting page
static int ACTION_DELETE
          Execute all deleting web action models
static int ACTION_EXECUTE
          Execute all executing web action models
static int ACTION_FIRST
          Execute all auto-retrieving dataset models, and move to the first row of the dataset
static int ACTION_INSERT
          Execute all inserting web action models
static int ACTION_LAST
          Execute all auto-retrieving dataset models, and move to the last group of rows
static int ACTION_NEXT
          Execute all auto-retrieving dataset models, and move to the next group of rows (as defined by a previous action)
static int ACTION_PREV
          Deprecated. Use ACTION_PREVIOUS instead
static int ACTION_PREVIOUS
          Execute all auto-retrieving dataset models, and move to the prior group of rows (as defined by a previous action)
static int ACTION_REFRESH
          Re-execute the current auto-retrieving dataset models
static int ACTION_SELECT
          Not supported
static int ACTION_UPDATE
          Execute all updating web action models
 

Field Detail

ACTION_FIRST

public static final int ACTION_FIRST
Execute all auto-retrieving dataset models, and move to the first row of the dataset

ACTION_NEXT

public static final int ACTION_NEXT
Execute all auto-retrieving dataset models, and move to the next group of rows (as defined by a previous action)

ACTION_PREV

public static final int ACTION_PREV
Deprecated. Use ACTION_PREVIOUS instead


ACTION_PREVIOUS

public static final int ACTION_PREVIOUS
Execute all auto-retrieving dataset models, and move to the prior group of rows (as defined by a previous action)

ACTION_LAST

public static final int ACTION_LAST
Execute all auto-retrieving dataset models, and move to the last group of rows

ACTION_SELECT

public static final int ACTION_SELECT
Not supported

ACTION_UPDATE

public static final int ACTION_UPDATE
Execute all updating web action models

ACTION_INSERT

public static final int ACTION_INSERT
Execute all inserting web action models

ACTION_DELETE

public static final int ACTION_DELETE
Execute all deleting web action models

ACTION_CLEAR

public static final int ACTION_CLEAR
Execute no models, resulting in a blank resulting page

ACTION_EXECUTE

public static final int ACTION_EXECUTE
Execute all executing web action models

ACTION_REFRESH

public static final int ACTION_REFRESH
Re-execute the current auto-retrieving dataset models