The removeSSOData method
- Organization of this page
Description
Deletes single sign-on authentication information. If the specified user does not exist, an exception occurs.
When authentication information listeners for single sign-on are registered in this object, the ssoDataRemoved method is called for all such listeners.
Syntax
public void removeSSOData(String uid) throws SSODataListenerException, NamingException, CryptoException, UnsatisfiedLinkError, SecurityException;
Parameter
- uid:
-
Specifies the user ID.
Exceptions
- com.cosminexus.admin.auth.api.repository.event.SSODataListenerException:
-
An attempt to update authentication information for another system has failed.
- com.cosminexus.admin.auth.CryptoException:
-
An attempt to read the encryption key file has failed or an attempt to decrypt SecretData has failed due to the use of the wrong encryption key file.
- java.lang.UnsatisfiedLinkError:
-
An attempt to read the single sign-on library has failed.
- java.lang.SecurityException:
-
SecurityManager is present, and read access to the file using SecurityManager's checkRead method has been rejected.
- javax.naming.CommunicationException:
-
An attempt to connect to the LDAP directory server has failed.
- javax.naming.NameNotFoundException:
-
The specified user ID is missing.
- Other JNDI exceptions:
-
Events such as a bind DN specification error
Return value
None