|
Préférences
Moteurs de recherche
|
|||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.naming.ldap
|
Field Summary | |
---|---|
static String |
OID
The StartTLS extended request's assigned object identifier is 1.3.6.1.4.1.1466.20037. |
Constructor Summary | |
---|---|
StartTlsRequest()
Constructs a StartTLS extended request. |
Method Summary | |
---|---|
ExtendedResponse |
createExtendedResponse(String id,
byte[] berValue,
int offset,
int length)
Creates an extended response object that corresponds to the LDAP StartTLS extended request. |
byte[] |
getEncodedValue()
Retrieves the StartTLS request's ASN.1 BER encoded value. |
String |
getID()
Retrieves the StartTLS request's object identifier string. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String OID
Constructor Detail |
---|
public StartTlsRequest()
Method Detail |
---|
public String getID()
getID
in interface ExtendedRequest
public byte[] getEncodedValue()
getEncodedValue
in interface ExtendedRequest
public ExtendedResponse createExtendedResponse(String id, byte[] berValue, int offset, int length) throws NamingException
The result must be a concrete subclass of StartTlsResponse and must have a public zero-argument constructor.
This method locates the implementation class by locating configuration files that have the name:
META-INF/services/javax.naming.ldap.StartTlsResponseThe configuration files and their corresponding implementation classes must be accessible to the calling thread's context class loader.
Each configuration file should contain a list of fully-qualified class names, one per line. Space and tab characters surrounding each name, as well as blank lines, are ignored. The comment character is '#' (0x23); on each line all characters following the first comment character are ignored. The file must be encoded in UTF-8.
This method will return an instance of the first implementation class that it is able to load and instantiate successfully from the list of class names collected from the configuration files. This method uses the calling thread's context classloader to find the configuration files and to load the implementation class.
If no class can be found in this way, this method will use an implementation-specific way to locate an implementation. If none is found, a NamingException is thrown.
createExtendedResponse
in interface ExtendedRequest
id
- The object identifier of the extended response.
Its value must be "1.3.6.1.4.1.1466.20037" or null.
Both values are equivalent.berValue
- The possibly null ASN.1 BER encoded value of the
extended response. This is the raw BER bytes
including the tag and length of the response value.
It does not include the response OID.
Its value is ignored because a Start TLS response
is not expected to contain any response value.offset
- The starting position in berValue of the bytes to use.
Its value is ignored because a Start TLS response
is not expected to contain any response value.length
- The number of bytes in berValue to use.
Its value is ignored because a Start TLS response
is not expected to contain any response value.
NamingException
- If a naming exception was encountered
while creating the StartTLS extended response object.ExtendedResponse