FileDocCategorySizeDatePackage
ORAddress.javaAPI DocAndroid 1.5 API2895Wed May 06 22:41:06 BST 2009org.apache.harmony.security.x509

ORAddress

public class ORAddress extends Object
The class encapsulates the ASN.1 DER encoding/decoding work with the ORAddress structure which is a part of X.509 certificate: (as specified in RFC 3280 - Internet X.509 Public Key Infrastructure. Certificate and Certificate Revocation List (CRL) Profile. http://www.ietf.org/rfc/rfc3280.txt):
ORAddress ::= SEQUENCE {
built-in-standard-attributes BuiltInStandardAttributes,
built-in-domain-defined-attributes
BuiltInDomainDefinedAttributes OPTIONAL,
extension-attributes ExtensionAttributes OPTIONAL
}
TODO: this class needs to be finished.

Fields Summary
private byte[]
encoding
public static final org.apache.harmony.security.asn1.ASN1Sequence
ASN1
ASN.1 DER X.509 ORAddress encoder/decoder class.
Constructors Summary
public ORAddress()
TODO

Methods Summary
public byte[]getEncoded()
Returns ASN.1 encoded form of this X.509 ORAddress value.

return
a byte array containing ASN.1 encode form.

        if (encoding == null) {
            encoding = ASN1.encode(this);
        }
        return encoding;