|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.security.cert.PolicyQualifierInfo
public class PolicyQualifierInfo
The PolicyQualifierInfo X.509 certificate extension. PolicyQualifierInfo objects are represented by the ASN.1 structure:
PolicyQualifierInfo ::= SEQUENCE {
policyQualifierId PolicyQualifierId,
qualifier ANY DEFINED BY policyQualifierId
}
PolicyQualifierId ::= OBJECT IDENTIFIER
| Constructor Summary | |
|---|---|
PolicyQualifierInfo(byte[] encoded)
Create a new PolicyQualifierInfo object from the DER encoded form passed in the byte array. |
|
| Method Summary | |
|---|---|
byte[] |
getEncoded()
Returns the DER encoded form of this object; the contents of the returned byte array are equivalent to those that were passed to the constructor. |
byte[] |
getPolicyQualifier()
Get the qualifier field of this object, as a DER
encoded byte array. |
String |
getPolicyQualifierId()
Returns the policyQualifierId field of this structure,
as a dotted-decimal representation of the object identifier. |
String |
toString()
Returns a printable string representation of this object. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public PolicyQualifierInfo(byte[] encoded)
throws IOException
The ASN.1 form of PolicyQualifierInfo is:
PolicyQualifierInfo ::= SEQUENCE {
policyQualifierId PolicyQualifierId,
qualifier ANY DEFINED BY policyQualifierId
}
PolicyQualifierId ::= OBJECT IDENTIFIER
encoded - The DER encoded form.
IOException - If the structure cannot be parsed from the
encoded bytes.| Method Detail |
|---|
public final String getPolicyQualifierId()
policyQualifierId field of this structure,
as a dotted-decimal representation of the object identifier.
public final byte[] getEncoded()
public final byte[] getPolicyQualifier()
qualifier field of this object, as a DER
encoded byte array. The byte array returned is cloned every time
this method is called.
public String toString()
toString in class ObjectObject.getClass(),
Object.hashCode(),
Class.getName(),
Integer.toHexString(int)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||