com.novell.nds.dirxml.ldap
Class RegenerateKeyRequest

java.lang.Object
  extended bycom.novell.ldap.LDAPExtendedOperation
      extended bycom.novell.nds.dirxml.ldap.DirXMLRequest
          extended bycom.novell.nds.dirxml.ldap.RegenerateKeyRequest
All Implemented Interfaces:
Cloneable, ExtendedRequest, Externalizable, Serializable

public class RegenerateKeyRequest
extends com.novell.nds.dirxml.ldap.DirXMLRequest
implements ExtendedRequest

Cause the DirXML Engine to regenerate the public key/private key pair used for encrypting data when setting passwords.

To use this class with the Novell Java LDAP SDK create an instance and call LDAPConnection.extendedOperation with the instance as the LDAPExtendedOperation parameter.

To use this class with Java LDAP JNDI create an instance and call LdapContext.extendedOperation with the instance as the ExtendedRequest parameter.

Rights needed:
Supervisor rights to the NCP Server object corresponding to the target server.

OID:
2.16.840.1.113719.1.14.100.47

Request data:
 ASN1Integer     Flag value of key to regenerate (currently only RSA is supported, with a value of 64)
 

See Also:
LDAPConnection.extendedOperation(com.novell.ldap.LDAPExtendedOperation), Serialized Form

Constructor Summary
RegenerateKeyRequest(int keyFlag)
          Construct an LDAP extended operation to cause the DirXML Engine to regenerate the public key/private key pair used for encrypting data when setting passwords.
 
Method Summary
 ExtendedResponse createExtendedResponse(String id, byte[] berValue, int offset, int length)
          Create the ExtendedResponse-implementing object that corresponds to this request.
 byte[] getEncodedValue()
          Return the LBER-encoded data for this request.
 
Methods inherited from class com.novell.ldap.LDAPExtendedOperation
clone, getID, getValue, readDSML, readExternal, setID, setValue, toString, writeDSML, writeExternal
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface javax.naming.ldap.ExtendedRequest
createExtendedResponse, getEncodedValue, getID
 

Constructor Detail

RegenerateKeyRequest

public RegenerateKeyRequest(int keyFlag)
                     throws LDAPException
Construct an LDAP extended operation to cause the DirXML Engine to regenerate the public key/private key pair used for encrypting data when setting passwords.

Parameters:
keyFlag - key flag value (64 for RSA)
Method Detail

getEncodedValue

public byte[] getEncodedValue()
Return the LBER-encoded data for this request. This is an implementation method for the JNDI ExtendedRequest interface.

Specified by:
getEncodedValue in interface ExtendedRequest
Returns:
LBER-encoded data or null, if there is no request data.

createExtendedResponse

public ExtendedResponse createExtendedResponse(String id,
                                               byte[] berValue,
                                               int offset,
                                               int length)
                                        throws NamingException
Create the ExtendedResponse-implementing object that corresponds to this request. This is an implementation method for the JNDI ExtendedRequest interface.

Specified by:
createExtendedResponse in interface ExtendedRequest
Parameters:
id - (ignored)
berValue - contains LBER-encoded response data
offset - offset into berValue
length - length (in bytes) of reponse data
Throws:
NamingException