Package org.bouncycastle.asn1.x509
Class AccessDescription
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.x509.AccessDescription
-
- All Implemented Interfaces:
ASN1Encodable
,Encodable
public class AccessDescription extends ASN1Object
The AccessDescription object.AccessDescription ::= SEQUENCE { accessMethod OBJECT IDENTIFIER, accessLocation GeneralName }
-
-
Field Summary
Fields Modifier and Type Field Description static ASN1ObjectIdentifier
id_ad_caIssuers
static ASN1ObjectIdentifier
id_ad_ocsp
-
Constructor Summary
Constructors Constructor Description AccessDescription(ASN1ObjectIdentifier oid, GeneralName location)
create an AccessDescription with the oid and location provided.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description GeneralName
getAccessLocation()
ASN1ObjectIdentifier
getAccessMethod()
static AccessDescription
getInstance(java.lang.Object obj)
ASN1Primitive
toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding.java.lang.String
toString()
-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
-
-
-
Field Detail
-
id_ad_caIssuers
public static final ASN1ObjectIdentifier id_ad_caIssuers
-
id_ad_ocsp
public static final ASN1ObjectIdentifier id_ad_ocsp
-
-
Constructor Detail
-
AccessDescription
public AccessDescription(ASN1ObjectIdentifier oid, GeneralName location)
create an AccessDescription with the oid and location provided.
-
-
Method Detail
-
getInstance
public static AccessDescription getInstance(java.lang.Object obj)
-
getAccessMethod
public ASN1ObjectIdentifier getAccessMethod()
- Returns:
- the access method.
-
getAccessLocation
public GeneralName getAccessLocation()
- Returns:
- the access location
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Description copied from class:ASN1Object
Method providing a primitive representation of this object suitable for encoding.- Specified by:
toASN1Primitive
in interfaceASN1Encodable
- Specified by:
toASN1Primitive
in classASN1Object
- Returns:
- a primitive representation of this object.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-