Class URICertStoreParameters

java.lang.Object
java.security.cert.URICertStoreParameters
All Implemented Interfaces:
Cloneable, CertStoreParameters

public final class URICertStoreParameters extends Object implements CertStoreParameters
Parameters used as input for CertStore algorithms which use information contained in a URI to retrieve certificates and CRLs.

This class is used to provide necessary configuration parameters through a URI as defined in RFC 5280 to implementations of CertStore algorithms.

Concurrent Access

Unless otherwise specified, the methods defined in this class are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.

Since:
9
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of URICertStoreParameters with the specified URI.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a copy of this object.
    boolean
    Compares the specified object with this parameters object for equality.
    Returns the URI used to construct this URICertStoreParameters object.
    int
    Returns a hash code value for this parameters object.
    Returns a formatted string describing the parameters including the URI used to construct this object.

    Methods declared in class Object

    finalize, getClass, notify, notifyAll, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Constructor Details

    • URICertStoreParameters

      public URICertStoreParameters(URI uri)
      Creates an instance of URICertStoreParameters with the specified URI.
      Parameters:
      uri - the URI which contains configuration information.
      Throws:
      NullPointerException - if uri is null
  • Method Details

    • getURI

      public URI getURI()
      Returns the URI used to construct this URICertStoreParameters object.
      Returns:
      the URI.
    • clone

      public URICertStoreParameters clone()
      Returns a copy of this object. Changes to the copy will not affect the original and vice versa.
      Specified by:
      clone in interface CertStoreParameters
      Overrides:
      clone in class Object
      Returns:
      the copy
      See Also:
    • hashCode

      public int hashCode()
      Returns a hash code value for this parameters object. The hash code is generated using the URI supplied at construction.
      Overrides:
      hashCode in class Object
      Returns:
      a hash code value for this parameters object
      See Also:
    • equals

      public boolean equals(Object p)
      Compares the specified object with this parameters object for equality. Two URICertStoreParameters are considered equal if the URIs used to construct them are equal.
      Overrides:
      equals in class Object
      Parameters:
      p - the object to test for equality with this parameters object.
      Returns:
      true if the specified object is equal to this parameters object.
      See Also:
    • toString

      public String toString()
      Returns a formatted string describing the parameters including the URI used to construct this object.
      Overrides:
      toString in class Object
      Returns:
      a formatted string describing the parameters