uCosminexus Application Server, Security Management Guide

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

15.14 The SSODataEvent class

Description
Stores updated single sign-on authentication information.
The package name of the SSODataEvent class is com.cosminexus.admin.auth.api.repository.event.

Syntax
class SSODataEvent
{
  public SSODataEvent(String uid,
                      String secretData,
                      String publicData,
                      String oldSecretData,
                      String oldPublicData);
 
  public String getUserId();
  public String getSecretData();
  public String getPublicData();
  public String getOldSecretData();
  public String getOldPublicData();
}

Constructor and methods
Constructor/method name Functionality
SSODataEvent constructor Creates an instance of the SSODataEvent class.
getOldPublicData method Obtains old PublicData.
getOldSecretData method Obtains old SecretData.
getPublicData method Obtains PublicData.
getSecretData method Obtains SecretData.
getUserId method Obtains a user ID.
Organization of this section
The SSODataEvent constructor
The getOldPublicData method
The getOldSecretData method
The getPublicData method
The getSecretData method
The getUserId method