All Packages Class Hierarchy This Package Previous Next Index
Class iaik.x509.extensions.IssuerAltName
java.lang.Object
|
+----iaik.x509.V3Extension
|
+----iaik.x509.extensions.IssuerAltName
- public class IssuerAltName
- extends V3Extension
This class implements the IssuerAltName Extension.
-
IssuerAltName()
- Default constructor.
-
IssuerAltName(GeneralNames)
- Constructs an IssuerAltName object form a GeneralNames ASN.1 type.
-
getGeneralNames()
- Returns the alternate names of an issuer.
-
getObjectID()
- Returns the object ID of this extension
-
hashCode()
- Returns a hashcode for this identity.
-
init(ASN1Object)
- Inits this implementation of an extension with an ASN1Object.
-
setGeneralNames(GeneralNames)
- Sets alternate names of an issuer.
-
toASN1Object()
- Returns the value of this extension as ASN1Object.
-
toString()
- Returns a string that represents the contents of the extensions.
IssuerAltName
public IssuerAltName()
- Default constructor. Creates an empty object.
IssuerAltName
public IssuerAltName(GeneralNames gn)
- Constructs an IssuerAltName object form a GeneralNames ASN.1 type.
- Parameters:
- the - issuer alternate name as GeneralNames
getObjectID
public ObjectID getObjectID()
- Returns the object ID of this extension
- Returns:
- the object ID
- Overrides:
- getObjectID in class V3Extension
init
public void init(ASN1Object obj) throws ExtensionException
- Inits this implementation of an extension with an ASN1Object.
The ASN1Object is the extensionValue from ASN.1 type "Extension".
The ASN1Object is the one created by toASN1Object().
- Parameters:
- obj - the extensionValue as ASN1Object
- Throws: ExtensionException
- if the extension could not be parsed
- Overrides:
- init in class V3Extension
- See Also:
- toASN1Object
toASN1Object
public ASN1Object toASN1Object()
- Returns the value of this extension as ASN1Object.
The ASN1Object is the extensionValue from ASN.1 type "Extension".
The created ASN1Object is same, which is the parameter to
method init.
- Returns:
- the value of the extension as ASN1Object
- Overrides:
- toASN1Object in class V3Extension
- See Also:
- init
setGeneralNames
public void setGeneralNames(GeneralNames alternateName)
- Sets alternate names of an issuer.
- Parameters:
- alternateName - the alternate names of an issuer
getGeneralNames
public GeneralNames getGeneralNames()
- Returns the alternate names of an issuer.
- Returns:
- the alternate names of an issuer
hashCode
public int hashCode()
- Returns a hashcode for this identity.
- Returns:
- a hash code for this identity
- Overrides:
- hashCode in class V3Extension
toString
public String toString()
- Returns a string that represents the contents of the extensions.
- Returns:
- the string representation
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index