Hitachi

uCosminexus Application Server Security Management Guide


15.13 The SSOData class

Description

Holds single sign-on authentication information.

The package name of the SSOData class is com.cosminexus.admin.auth.api.repository.ldap.

Syntax
class SSOData
{
  public SSOData();
 
  public void setSecretData(String secretData)
    throws CryptoException, UnsatisfiedLinkError, SecurityException;
  public void setPublicData(String publicData);
  public String getPublicData();
  public Enumeration getMappingRealms();
  public String getMapping(String realm);
  public void setMapping(String realm,
                             String uid);
  public void removeMapping(String realm);
}
Constructor and methods

Constructor/method name

Functionality

SSOData constructor

Creates an instance of the SSOData class.

getMapping method

Obtains a user ID associated with a realm name.

getMappingRealms method

Obtains a list of realms.

getPublicData method

Obtains PublicData.

removeMapping method

Deletes the specified realm.

setMapping method

Holds the name of a destination realm and user ID.

setPublicData method

Holds PublicData.

setSecretData method

Holds SecretData.

Organization of this section