public static enum AuthenticationPlugin.AuthStatus extends java.lang.Enum<AuthenticationPlugin.AuthStatus>
| Enum Constant and Description | 
|---|
| AUTH_CONTINUEPlugin is not able to authenticate using the available data, continue with another plugin. | 
| AUTH_MORE_DATAThe authentication needs more data to complete (eg key exchange/handshake). | 
| AUTH_SUCCESSAuthentication completed. | 
| Modifier and Type | Method and Description | 
|---|---|
| static AuthenticationPlugin.AuthStatus | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AuthenticationPlugin.AuthStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AuthenticationPlugin.AuthStatus AUTH_SUCCESS
public static final AuthenticationPlugin.AuthStatus AUTH_CONTINUE
public static final AuthenticationPlugin.AuthStatus AUTH_MORE_DATA
public static AuthenticationPlugin.AuthStatus[] values()
for (AuthenticationPlugin.AuthStatus c : AuthenticationPlugin.AuthStatus.values()) System.out.println(c);
public static AuthenticationPlugin.AuthStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2022 Jaybird (Firebird JDBC/JCA) team. All rights reserved.