org.apache.struts2
Class ResultNames

java.lang.Object
  extended by org.apache.struts2.ResultNames

public final class ResultNames
extends java.lang.Object

Commonly used result names returned by action methods.

Author:
crazybob@google.com (Bob Lee)

Field Summary
static java.lang.String ERROR
          The action execution failed irrecoverably.
static java.lang.String INPUT
          The action requires more input, i.e. a validation error occurred.
static java.lang.String LOGIN
          The action requires the user to log in before executing.
static java.lang.String NONE
          The action executed successfully, but do not execute a result.
static java.lang.String SUCCESS
          The action executed successfully.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SUCCESS

public static final java.lang.String SUCCESS
The action executed successfully.

See Also:
Constant Field Values

INPUT

public static final java.lang.String INPUT
The action requires more input, i.e. a validation error occurred.

See Also:
Constant Field Values

LOGIN

public static final java.lang.String LOGIN
The action requires the user to log in before executing.

See Also:
Constant Field Values

ERROR

public static final java.lang.String ERROR
The action execution failed irrecoverably.

See Also:
Constant Field Values

NONE

public static final java.lang.String NONE
The action executed successfully, but do not execute a result.

See Also:
Constant Field Values


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.