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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/responses/SearchResultReferenceImpl.java
@@ -49,16 +49,16 @@
  /**
   * Creates a new search result reference using the provided
   * continuation reference URI.
   *
   * Creates a new search result reference using the provided continuation
   * reference URI.
   *
   * @param uri
   *          The first continuation reference URI to be added to this
   *          search result reference.
   *          The first continuation reference URI to be added to this search
   *          result reference.
   * @throws NullPointerException
   *           If {@code uri} was {@code null}.
   */
  SearchResultReferenceImpl(String uri) throws NullPointerException
  SearchResultReferenceImpl(final String uri) throws NullPointerException
  {
    addURI(uri);
  }
@@ -68,7 +68,7 @@
  /**
   * {@inheritDoc}
   */
  public SearchResultReference addURI(String uri)
  public SearchResultReference addURI(final String uri)
      throws UnsupportedOperationException, NullPointerException
  {
    Validator.ensureNotNull(uri);
@@ -81,29 +81,7 @@
  /**
   * {@inheritDoc}
   */
  public SearchResultReference clearURIs()
      throws UnsupportedOperationException
  {
    uris.clear();
    return this;
  }
  /**
   * {@inheritDoc}
   */
  public int getURICount()
  {
    return uris.size();
  }
  /**
   * {@inheritDoc}
   */
  public Iterable<String> getURIs()
  public List<String> getURIs()
  {
    return uris;
  }
@@ -113,16 +91,6 @@
  /**
   * {@inheritDoc}
   */
  public boolean hasURIs()
  {
    return !uris.isEmpty();
  }
  /**
   * {@inheritDoc}
   */
  @Override
  public String toString()
  {
@@ -137,6 +105,7 @@
  @Override
  SearchResultReference getThis()
  {
    return this;