LoginSkippedException class

This exception can be thrown from the login methods of the Server class to indicate that the system connection is not authenticating the user at all, and that some other system connection must be relied upon to perform the authentication.

Syntax

public class LoginSkippedException extends LoginException

Members

All members of LoginSkippedException, including inherited members.

Constructors
Modifier and Type Constructor Description
public LoginSkippedException() Constructs a new LoginSkippedException object.
public LoginSkippedException(String) Constructs a new LoginSkippedException object.
public LoginSkippedException(String, Throwable) Constructs a new LoginSkippedException object.
Inherited members from LoginException
Modifier and Type Member Description
public LoginException() Constructs a new login exception.
public LoginException(String) Constructs a new login exception with the given error message, which will be passed to the Agentry client.
public LoginException(String, Throwable) Constructs a new login exception with the given error message, which will be passed to the Agentry client.
Inherited members from AgentryException
Modifier and Type Member Description
public AgentryException(String) Constructs a new AgentryException object.
public AgentryException(String, Throwable) Constructs a new AgentryException object.
public AgentryException(String, String, String, Throwable) Constructs a new AgentryException object, for methods that support throwing exceptions that may appear in the client.
public AgentryException(String, String, String) Constructs a new AgentryException object, for methods that support throwing exceptions that may appear in the client.
public final String getNotificationText() Returns the notification window text.
public final String getNotificationTitle() Returns the notification window title.
public final String getOkButtonLabel() Returns the notification window button label.

Usage

It is functionally equivalent to setting the enableAuthentication setting for the Java System connection (in the Agentry.ini file) to false, except that it can be thrown on a per-user basis.