mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
01.04.2010 6439bba5cc09d6febc59bdc9e0d9bc25f1f1eb18
sdk/src/org/opends/sdk/requests/StartTLSExtendedRequestImpl.java
@@ -98,6 +98,16 @@
  private SSLContext sslContext;
  /**
   * The list of cipher suite
   */
  private String[] enabledCipherSuites = null;
  /**
   * the list of protocols
   */
  private String[] enabledProtocols = null;
  // No need to expose this.
  private static final ExtendedResultDecoder<ExtendedResult> RESULT_DECODER = new ResultDecoder();
@@ -152,6 +162,48 @@
  /**
   * {@inheritDoc}}
   */
  public StartTLSExtendedRequest setEnabledProtocols(String[] protocols)
  {
    this.enabledProtocols = protocols;
    return this;
  }
  /**
   * {@inheritDoc}}
   */
  public StartTLSExtendedRequest setEnabledCipherSuites(String[] suites)
  {
    this.enabledCipherSuites = suites;
    return this;
  }
  /**
   * {@inheritDoc}}
   */
  public String[] getEnabledProtocols()
  {
    return this.enabledProtocols;
  }
  /**
   * {@inheritDoc}}
   */
  public String[] getEnabledCipherSuites()
  {
    return this.enabledCipherSuites;
  }
  /**
   * {@inheritDoc}
   */
  @Override