API java : StartTlsResponse


javax.naming.ldap
Class StartTlsResponse

java.lang.Object
  extended by javax.naming.ldap.StartTlsResponse
All Implemented Interfaces:
Serializable, ExtendedResponse

public abstract class StartTlsResponse
extends Object
implements ExtendedResponse

This class implements the LDAPv3 Extended Response for StartTLS as defined in Lightweight Directory Access Protocol (v3): Extension for Transport Layer Security The object identifier for StartTLS is 1.3.6.1.4.1.1466.20037 and no extended response value is defined.

The Start TLS extended request and response are used to establish a TLS connection over the existing LDAP connection associated with the JNDI context on which extendedOperation() is invoked. Typically, a JNDI program uses the StartTLS extended request and response classes as follows.

  1. import javax.naming.ldap.*;
  2.  
  3. // Open an LDAP association
  4.  
  5. // Perform a StartTLS extended operation
  6. (StartTlsResponse) ctx.extendedOperation(new StartTlsRequest());
  7.  
  8. // Open a TLS connection (over the existing LDAP association) and get details
  9. // of the negotiated TLS session: cipher suite, peer certificate, ...
  10. SSLSession session = tls.negotiate();
  11.  
  12. // ... use ctx to perform protected LDAP operations
  13.  
  14. // Close the TLS connection (revert back to the underlying LDAP association)
  15. tls.close();
  16.  
  17. // ... use ctx to perform unprotected LDAP operations
  18.  
  19. // Close the LDAP association
  20. ctx.close;

Since:
1.4
See Also:
StartTlsRequest, Serialized Form

Field Summary
static String OID
          The StartTLS extended response's assigned object identifier is 1.3.6.1.4.1.1466.20037.
 
Constructor Summary
protected StartTlsResponse()
          Constructs a StartTLS extended response.
 
Method Summary
abstract  void close()
          Closes the TLS connection gracefully and reverts back to the underlying connection.
 byte[] getEncodedValue()
          Retrieves the StartTLS response's ASN.1 BER encoded value.
 String getID()
          Retrieves the StartTLS response's object identifier string.
abstract  SSLSession negotiate()
          Negotiates a TLS session using the default SSL socket factory.
abstract  SSLSession negotiate(SSLSocketFactory factory)
          Negotiates a TLS session using an SSL socket factory.
abstract  void setEnabledCipherSuites(String[] suites)
          Overrides the default list of cipher suites enabled for use on the TLS connection.
abstract  void setHostnameVerifier(HostnameVerifier verifier)
          Sets the hostname verifier used by negotiate() after the TLS handshake has completed and the default hostname verification has failed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

OID

public static final String OID
The StartTLS extended response's assigned object identifier is 1.3.6.1.4.1.1466.20037.

See Also:
Constant Field Values
Constructor Detail

StartTlsResponse

protected StartTlsResponse()
Constructs a StartTLS extended response. A concrete subclass must have a public no-arg constructor.

Method Detail

getID

public String getID()
Retrieves the StartTLS response's object identifier string.

Specified by:
getID in interface ExtendedResponse
Returns:
The object identifier string, "1.3.6.1.4.1.1466.20037".

getEncodedValue

public byte[] getEncodedValue()
Retrieves the StartTLS response's ASN.1 BER encoded value. Since the response has no defined value, null is always returned.

Specified by:
getEncodedValue in interface ExtendedResponse
Returns:
The null value.

setEnabledCipherSuites

public abstract void setEnabledCipherSuites(String[] suites)
Overrides the default list of cipher suites enabled for use on the TLS connection. The cipher suites must have already been listed by SSLSocketFactory.getSupportedCipherSuites() as being supported. Even if a suite has been enabled, it still might not be used because the peer does not support it, or because the requisite certificates (and private keys) are not available.

Parameters:
suites - The non-null list of names of all the cipher suites to enable.
See Also:
negotiate()

setHostnameVerifier

public abstract void setHostnameVerifier(HostnameVerifier verifier)
Sets the hostname verifier used by negotiate() after the TLS handshake has completed and the default hostname verification has failed. setHostnameVerifier() must be called before negotiate() is invoked for it to have effect. If called after negotiate(), this method does not do anything.

Parameters:
verifier - The non-null hostname verifier callback.
See Also:
negotiate()

negotiate

public abstract SSLSession negotiate()
                              throws IOException
Negotiates a TLS session using the default SSL socket factory.

This method is equivalent to negotiate(null).

Returns:
The negotiated SSL session
Throws:
IOException - If an IO error was encountered while establishing the TLS session.
See Also:
setEnabledCipherSuites(java.lang.String[]), setHostnameVerifier(javax.net.ssl.HostnameVerifier)

negotiate

public abstract SSLSession negotiate(SSLSocketFactory factory)
                              throws IOException
Negotiates a TLS session using an SSL socket factory.

Creates an SSL socket using the supplied SSL socket factory and attaches it to the existing connection. Performs the TLS handshake and returns the negotiated session information.

If cipher suites have been set via setEnabledCipherSuites then they are enabled before the TLS handshake begins.

Hostname verification is performed after the TLS handshake completes. The default hostname verification performs a match of the server's hostname against the hostname information found in the server's certificate. If this verification fails and no callback has been set via setHostnameVerifier then the negotiation fails. If this verification fails and a callback has been set via setHostnameVerifier, then the callback is used to determine whether the negotiation succeeds.

If an error occurs then the SSL socket is closed and an IOException is thrown. The underlying connection remains intact.

Parameters:
factory - The possibly null SSL socket factory to use. If null, the default SSL socket factory is used.
Returns:
The negotiated SSL session
Throws:
IOException - If an IO error was encountered while establishing the TLS session.
See Also:
setEnabledCipherSuites(java.lang.String[]), setHostnameVerifier(javax.net.ssl.HostnameVerifier)

close

public abstract void close()
                    throws IOException
Closes the TLS connection gracefully and reverts back to the underlying connection.

Throws:
IOException - If an IO error was encountered while closing the TLS connection

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

Quels sont les motivations de cette démarche?

Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

Avertissement : Erreurs sur le site de l'infobrol

Sommaire du document

La base de données est temporairement indisponible

Le site rencontre momentanément quelques problèmes...

La base de données est temporairement indisponible (), ce qui explique que de nombreuses fonctions ne soient temporairement pas accessibles (par exemple les liens de navigation, les sommaires, etc.) et que l'affichage des pages soit beaucoup plus lent.

Veuillez réessayer dans quelques minutes (les tests automatiques sont effectués toutes les 15 minutes).

Je vous présente mes excuses pour le désagrément que cela engendre.

Steph.

 

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-2674
Document créé le 01/01/70 &am12Thu, 01 Jan 1970 00:00:00 +0000amvUTC; 00:00, dernière modification le Vendredi 17 Juin 2011, 10:12
Source du document imprimé : http://www.gaudry.be/ Document affiché 0 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (afficher)

La gestion des membres est momentanement desactivee pour des raisons de maintenance.

Navigation (masquer)
Apparence (afficher)
Stats (afficher)
867 documents
astuces.
niouzes.
definitions.
membres.
2290 messages.

Document genere en :
0,34 seconde
Citation (masquer)
 
l'infobrol
Nous sommes le Vendredi 01 Juin 2012, 23:50, toutes les heures sont au format GMTs