FileDocCategorySizeDatePackage
AuthStatus.javaAPI DocGlassfish v2 API4010Fri May 04 22:36:10 BST 2007javax.security.auth.message

AuthStatus

public class AuthStatus extends Object
The AuthStatus class is used to represent return values from Authentication modules and Authentication Contexts. An AuthStatus value is returned when the module processing has established a corresponding request or response message within the message parameters exchanged with the runtime.
version
%I%, %G%
see
Map

Fields Summary
public static final AuthStatus
SUCCESS
Indicates that the message processing by the authentication module was successful and that the runtime is to proceed with its normal processing of the resulting message.
public static final AuthStatus
FAILURE
Indicates that the message processing by the authentication module was NOT successful, and that the module replaced the application message with an error message.
public static final AuthStatus
SEND_SUCCESS
Indicates that the message processing by the authentication module was successful and that the runtime is to proceed by sending a message returned by the authentication module.
public static final AuthStatus
SEND_FAILURE
Indicates that the message processing by the authentication module was NOT successful, that the module replaced the application message with an error message, and that the runtime is to proceed by sending the error message.
public static final AuthStatus
SEND_CONTINUE
Indicates the message processing by the authentication module is NOT complete, that the module replaced the application message with a security message, and that the runtime is to proceed by sending the security message.
private int
v
Constructors Summary
private AuthStatus()


      
	v = 1;
    
private AuthStatus(int value)

	v = value;
    
Methods Summary