|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.gudy.bouncycastle.asn1.ASN1Encodable org.gudy.bouncycastle.asn1.x509.RoleSyntax
public class RoleSyntax
Implementation of the RoleSyntax object as specified by the RFC3281.
RoleSyntax ::= SEQUENCE { roleAuthority [0] GeneralNames OPTIONAL, roleName [1] GeneralName }
Field Summary |
---|
Fields inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable |
---|
BER, DER |
Constructor Summary | |
---|---|
RoleSyntax(ASN1Sequence seq)
Constructor that builds an instance of RoleSyntax by
extracting the encoded elements from the ASN1Sequence
object supplied. |
|
RoleSyntax(GeneralName roleName)
Constructor. |
|
RoleSyntax(GeneralNames roleAuthority,
GeneralName roleName)
Constructor. |
|
RoleSyntax(String roleName)
Utility constructor. |
Method Summary | |
---|---|
static RoleSyntax |
getInstance(Object obj)
RoleSyntax factory method. |
GeneralNames |
getRoleAuthority()
Gets the role authority of this RoleSyntax. |
String[] |
getRoleAuthorityAsString()
Gets the role authority as a String[] object. |
GeneralName |
getRoleName()
Gets the role name of this RoleSyntax. |
String |
getRoleNameAsString()
Gets the role name as a java.lang.String object. |
DERObject |
toASN1Object()
Implementation of the method toASN1Object as
required by the superclass ASN1Encodable . |
String |
toString()
|
Methods inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable |
---|
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public RoleSyntax(GeneralNames roleAuthority, GeneralName roleName)
roleAuthority
- the role authority of this RoleSyntax.roleName
- the role name of this RoleSyntax.public RoleSyntax(GeneralName roleName)
new RoleSyntax(null, roleName)
.
roleName
- the role name of this RoleSyntax.public RoleSyntax(String roleName)
String
argument representing
the role name, builds a GeneralName
to hold the role name
and calls the constructor that takes a GeneralName
.
roleName
- public RoleSyntax(ASN1Sequence seq)
RoleSyntax
by
extracting the encoded elements from the ASN1Sequence
object supplied.
seq
- an instance of ASN1Sequence
that holds
the encoded elements used to build this RoleSyntax
.Method Detail |
---|
public static RoleSyntax getInstance(Object obj)
obj
- the object used to construct an instance of
RoleSyntax
. It must be an instance of RoleSyntax
or ASN1Sequence
.
RoleSyntax
built from the
supplied object.
IllegalArgumentException
- if the object passed
to the factory is not an instance of RoleSyntax
or
ASN1Sequence
.public GeneralNames getRoleAuthority()
GeneralNames
holding the
role authority of this RoleSyntax.public GeneralName getRoleName()
GeneralName
holding the
role name of this RoleSyntax.public String getRoleNameAsString()
java.lang.String
object.
java.lang.String
object.public String[] getRoleAuthorityAsString()
String[]
object.
String[]
array.public DERObject toASN1Object()
toASN1Object
as
required by the superclass ASN1Encodable
.
RoleSyntax ::= SEQUENCE { roleAuthority [0] GeneralNames OPTIONAL, roleName [1] GeneralName }
toASN1Object
in class ASN1Encodable
public String toString()
toString
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |