| java.lang.Object org.bouncycastle.asn1.ASN1Encodable org.bouncycastle.asn1.isismtt.x509.NamingAuthority
NamingAuthority | public class NamingAuthority extends ASN1Encodable (Code) | | Names of authorities which are responsible for the administration of title
registers.
NamingAuthority ::= SEQUENCE
{
namingAuthorityId OBJECT IDENTIFIER OPTIONAL,
namingAuthorityUrl IA5String OPTIONAL,
namingAuthorityText DirectoryString(SIZE(1..128)) OPTIONAL
}
See Also: org.bouncycastle.asn1.isismtt.x509.AdmissionSyntax |
id_isismtt_at_namingAuthorities_RechtWirtschaftSteuern | final public static DERObjectIdentifier id_isismtt_at_namingAuthorities_RechtWirtschaftSteuern(Code) | | Profession OIDs should always be defined under the OID branch of the
responsible naming authority. At the time of this writing, the work group
�Recht, Wirtschaft, Steuern� (�Law, Economy, Taxes�) is registered as the
first naming authority under the OID id-isismtt-at-namingAuthorities.
|
NamingAuthority | public NamingAuthority(DERObjectIdentifier namingAuthorityId, String namingAuthorityUrl, DirectoryString namingAuthorityText)(Code) | | Constructor from given details.
All parameters can be combined.
Parameters: namingAuthorityId - ObjectIdentifier for naming authority. Parameters: namingAuthorityUrl - URL for naming authority. Parameters: namingAuthorityText - Textual representation of naming authority. |
getNamingAuthorityText | public DirectoryString getNamingAuthorityText()(Code) | | Returns the namingAuthorityText. |
getNamingAuthorityUrl | public String getNamingAuthorityUrl()(Code) | | Returns the namingAuthorityUrl. |
toASN1Object | public DERObject toASN1Object()(Code) | | Produce an object suitable for an ASN1OutputStream.
Returns:
NamingAuthority ::= SEQUENCE
{
namingAuthorityId OBJECT IDENTIFIER OPTIONAL,
namingAuthorityUrl IA5String OPTIONAL,
namingAuthorityText DirectoryString(SIZE(1..128)) OPTIONAL
}
a DERObject |
|
|