Class Overview
This class implements a policy qualifier as defined by the ASN.1
PolicyQualifierInfo
structure.
Summary
Public Constructors |
|
PolicyQualifierInfo(byte[] encoded)
Creates a new PolicyQualifierInfo from the specified encoded
form.
|
Public Methods |
final
byte[]
|
getEncoded()
Returns a ASN.1 DER encoded copy of policy qualifier info.
|
final
byte[]
|
getPolicyQualifier()
Returns a ASN.1 DER encoded copy of the qualifier of this policy
qualifier info.
|
final
String
|
getPolicyQualifierId()
Returns the identifier (an OID) of this policy qualifier info.
|
String
|
toString()
Returns a string representation of this PolicyQualifierInfo
instance.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Public Constructors
public
PolicyQualifierInfo
(byte[] encoded)
Creates a new PolicyQualifierInfo
from the specified encoded
form.
Parameters
encoded
| the DER encoded policy qualifier. |
Public Methods
public
final
byte[]
getEncoded
()
Returns a ASN.1 DER encoded copy of policy qualifier info.
Returns
- a ASN.1 DER encoded copy of policy qualifier info.
public
final
byte[]
getPolicyQualifier
()
Returns a ASN.1 DER encoded copy of the qualifier of this policy
qualifier info.
Returns
- a ASN.1 DER encoded copy of the qualifier of this policy
qualifier info.
public
final
String
getPolicyQualifierId
()
Returns the identifier (an OID) of this policy qualifier info.
Returns
- the identifier of this policy qualifier info.
public
String
toString
()
Returns a string representation of this PolicyQualifierInfo
instance.
Returns
- a string representation of this
PolicyQualifierInfo
instance.