uCosminexus Application Server, Security Management Guide

[Contents][Index][Back][Next]

15.16 The SSODataListenerException class

Description
An exception class that is called when an exception occurs in the authentication information listener class for single sign-on.
The package name of the SSODataListenerException class is com.cosminexus.admin.auth.api.repository.event.

Syntax
class SSODataListenerException extends UAException
{
  public SSODataListenerException();
  public SSODataListenerException(String msg);
 
  public void setException(SSODataListener listener,
                           ChangeDataFailedException exception);
  public SSODataListener[] getListeners();
  public ChangeDataFailedException getException(SSODataListener listener);
}

Constructor and methods
Constructor/method name Functionality
SSODataListenerException constructor Creates an instance of the SSODataListenerException class.
getException method Obtains an exception object.
getListeners method Obtains listeners stored in the exception.
setException method Holds an exception object.
Organization of this section
The SSODataListenerException constructor
The getException method
The getListeners method
The setException method