| |
|
| java.lang.Object org.apache.harmony.security.x509.GeneralNames
GeneralNames | public class GeneralNames (Code) | | The class encapsulates the ASN.1 DER encoding/decoding work
with the GeneralNames 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):
GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
See Also: org.apache.harmony.security.x509.NameConstraints See Also: org.apache.harmony.security.x509.GeneralSubtree |
Field Summary | |
final public static ASN1Type | ASN1 ASN.1 DER X.509 GeneralNames encoder/decoder class. |
Constructor Summary | |
public | GeneralNames() Constructs an object representing the value of GeneralNames. | public | GeneralNames(List generalNames) |
ASN1 | final public static ASN1Type ASN1(Code) | | ASN.1 DER X.509 GeneralNames encoder/decoder class.
|
GeneralNames | public GeneralNames()(Code) | | Constructs an object representing the value of GeneralNames.
|
GeneralNames | public GeneralNames(List generalNames)(Code) | | TODO
generalNames: List |
dumpValue | public void dumpValue(StringBuffer buffer, String prefix)(Code) | | Places the string representation of extension value
into the StringBuffer object.
|
getEncoded | public byte[] getEncoded()(Code) | | Returns ASN.1 encoded form of this X.509 GeneralNames value.
a byte array containing ASN.1 encode form. |
getNames | public List getNames()(Code) | | Returns the list of values.
names |
getPairsList | public List getPairsList()(Code) | | Returns the collection of pairs: (Integer (tag), Object (name value))*
the collection of pairs: (Integer (tag), Object (name value))* |
|
|
|