net.jspcontrols.dialogs.actions.crud
Interface CRUDConstants


public interface CRUDConstants

CRUD action constants, used in Struts Dialogs package.

Author:
Michael Jouravlev

Field Summary
static java.lang.String MAPPING_ON_CANCEL
          Canceled editing existing BO or new BO
static java.lang.String MAPPING_ON_CLOSE
          Closed preview of existing BO
static java.lang.String MAPPING_ON_CREATE_FAILURE
          Failed to create empty BO (redirect to error page)
static java.lang.String MAPPING_ON_CREATE_SUCCESS
          Successfully created empty BO (usually redirect to self for editing)
static java.lang.String MAPPING_ON_DELETE_FAILURE
          Failed to delete existing BO (redirect to error page)
static java.lang.String MAPPING_ON_DELETE_SUCCESS
          Successfully deleted existing BO (usually redirect to BO list or success page)
static java.lang.String MAPPING_ON_DUPLICATE_FAILURE
          Failed to duplicate existing BO (redirect to error page)
static java.lang.String MAPPING_ON_DUPLICATE_SUCCESS
          Successfully duplicated BO (usually redirect to self for editing)
static java.lang.String MAPPING_ON_EDIT_SUCCESS
          Successfully loaded existing BO and prepared for editing (usually redirect to self for editing)
static java.lang.String MAPPING_ON_INVALID_DATA
          Input data is invalid (when form bean's validate() returns errors)
static java.lang.String MAPPING_ON_LOAD_FAILURE
          Failed to load existing BO for preview or editing (redirect to error page)
static java.lang.String MAPPING_ON_PREVIEW_SUCCESS
          Successfully loaded existing BO and prepared for preview (usually redirect to self for viewing)
static java.lang.String MAPPING_ON_RESET_FAILURE
          Failed to reset content of existing form
static java.lang.String MAPPING_ON_RESET_SUCCESS
          Resets content of existing form
static java.lang.String MAPPING_ON_STORE_FAILURE
          Failed to store new BO or changes to existing BO
static java.lang.String MAPPING_ON_STORE_SUCCESS
          Successfully stored new BO or changes to existing BO
 

Field Detail

MAPPING_ON_CREATE_SUCCESS

public static final java.lang.String MAPPING_ON_CREATE_SUCCESS
Successfully created empty BO (usually redirect to self for editing)

See Also:
Constant Field Values

MAPPING_ON_CREATE_FAILURE

public static final java.lang.String MAPPING_ON_CREATE_FAILURE
Failed to create empty BO (redirect to error page)

See Also:
Constant Field Values

MAPPING_ON_DUPLICATE_SUCCESS

public static final java.lang.String MAPPING_ON_DUPLICATE_SUCCESS
Successfully duplicated BO (usually redirect to self for editing)

See Also:
Constant Field Values

MAPPING_ON_DUPLICATE_FAILURE

public static final java.lang.String MAPPING_ON_DUPLICATE_FAILURE
Failed to duplicate existing BO (redirect to error page)

See Also:
Constant Field Values

MAPPING_ON_PREVIEW_SUCCESS

public static final java.lang.String MAPPING_ON_PREVIEW_SUCCESS
Successfully loaded existing BO and prepared for preview (usually redirect to self for viewing)

See Also:
Constant Field Values

MAPPING_ON_EDIT_SUCCESS

public static final java.lang.String MAPPING_ON_EDIT_SUCCESS
Successfully loaded existing BO and prepared for editing (usually redirect to self for editing)

See Also:
Constant Field Values

MAPPING_ON_LOAD_FAILURE

public static final java.lang.String MAPPING_ON_LOAD_FAILURE
Failed to load existing BO for preview or editing (redirect to error page)

See Also:
Constant Field Values

MAPPING_ON_DELETE_SUCCESS

public static final java.lang.String MAPPING_ON_DELETE_SUCCESS
Successfully deleted existing BO (usually redirect to BO list or success page)

See Also:
Constant Field Values

MAPPING_ON_DELETE_FAILURE

public static final java.lang.String MAPPING_ON_DELETE_FAILURE
Failed to delete existing BO (redirect to error page)

See Also:
Constant Field Values

MAPPING_ON_CANCEL

public static final java.lang.String MAPPING_ON_CANCEL
Canceled editing existing BO or new BO

See Also:
Constant Field Values

MAPPING_ON_RESET_SUCCESS

public static final java.lang.String MAPPING_ON_RESET_SUCCESS
Resets content of existing form

See Also:
Constant Field Values

MAPPING_ON_RESET_FAILURE

public static final java.lang.String MAPPING_ON_RESET_FAILURE
Failed to reset content of existing form

See Also:
Constant Field Values

MAPPING_ON_CLOSE

public static final java.lang.String MAPPING_ON_CLOSE
Closed preview of existing BO

See Also:
Constant Field Values

MAPPING_ON_STORE_SUCCESS

public static final java.lang.String MAPPING_ON_STORE_SUCCESS
Successfully stored new BO or changes to existing BO

See Also:
Constant Field Values

MAPPING_ON_STORE_FAILURE

public static final java.lang.String MAPPING_ON_STORE_FAILURE
Failed to store new BO or changes to existing BO

See Also:
Constant Field Values

MAPPING_ON_INVALID_DATA

public static final java.lang.String MAPPING_ON_INVALID_DATA
Input data is invalid (when form bean's validate() returns errors)

See Also:
Constant Field Values