com.adobe.livecycle.signatures.client.types
Class IdentityDetails

java.lang.Object
  extended by com.adobe.livecycle.signatures.client.types.IdentityDetails
All Implemented Interfaces:
java.io.Serializable

public class IdentityDetails
extends java.lang.Object
implements java.io.Serializable

Represents the identity details that were extracted from the certificate. This class was added to LiveCycle ES2.

See Also:
Serialized Form

Constructor Summary
IdentityDetails()
           
 
Method Summary
 CertificateInformation getCertificate()
          Returns a CertificateInformation object that represents information about the certificate.
 java.lang.String getCommonName()
          Returns the common name that is associated with this certificate.
 java.lang.String getCountry()
          Returns the country that is associated with this certificate.
 java.lang.String getDNQualifier()
          Returns the DNQualifier value that is associated with this certificate.
 java.lang.String getEmail()
          Returns the email address that is associated with this certificate.
 java.lang.String getGenerationQualifier()
          Returns the generation qualifier value that is associated with this certificate.
 java.lang.String getGivenName()
          Returns the given name that is associated with this certificate.
 java.lang.String getInitials()
          Returns the initials that is associated with this certificate.
 java.lang.String getLocality()
          Returns the locality that is associated with this certificate.
 java.lang.String getOrganization()
          Returns the organization that is associated with this certificate.
 java.lang.String getOrganizationalUnit()
          Returns the organizational unit that is associated with this certificate.
 java.lang.String getPseudonym()
          Returns the pseudonym value that is associated with this certificate.
 java.lang.String getSerialNumber()
          Returns the serial number that is associated with this certificate.
 java.lang.String getState()
          Returns the state that is associated with this certificate.
 java.lang.String getSubjectName()
          Returns the subject name that is associated with this certificate.
 java.lang.String getSurname()
          Returns the surname that is associated with this certificate.
 java.lang.String getTitle()
          Returns the title that is associated with this certificate.
 void setCertificate(CertificateInformation identityCertificate)
          Sets a CertificateInformation object that represents information about the certificate.
 void setCommonName(java.lang.String commonName)
          Sets the common name that is associated with this certificate.
 void setCountry(java.lang.String country)
          Sets the country that is associated with this certificate.
 void setDNQualifier(java.lang.String dnQualifier)
          Sets the DNQualifier value that is associated with this certificate.
 void setEmail(java.lang.String email)
          Sets the email address that is associated with this certificate.
 void setGenerationQualifier(java.lang.String generationQualifier)
          Sets the generation qualifier value that is associated with this certificate.
 void setGivenName(java.lang.String givenName)
          Sets the surname that is associated with this certificate.
 void setInitials(java.lang.String initials)
          Sets the initials that is associated with this certificate.
 void setLocality(java.lang.String locality)
          Sets the locality that is associated with this certificate.
 void setOrganization(java.lang.String organization)
          Sets the organization that is associated with this certificate.
 void setOrganizationalUnit(java.lang.String organizationUnit)
          Sets the organizational unit that is associated with this certificate.
 void setPseudonym(java.lang.String pseudonym)
          Sets the pseudonym value that is associated with this certificate.
 void setSerialNumber(java.lang.String serialNumber)
          Sets the serial number that is associated with this certificate.
 void setState(java.lang.String state)
          Sets the state that is associated with this certificate.
 void setSubjectName(java.lang.String subjectName)
          Sets the subject name that is associated with this certificate.
 void setSurname(java.lang.String surname)
          Sets the surname that is associated with this certificate.
 void setTitle(java.lang.String title)
          Sets the title that is associated with this certificate.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IdentityDetails

public IdentityDetails()
Method Detail

getCommonName

public java.lang.String getCommonName()
Returns the common name that is associated with this certificate.

Returns:
A string value that specifies the common name value.

setCommonName

public void setCommonName(java.lang.String commonName)
Sets the common name that is associated with this certificate.

Parameters:
commonName - A string value that specifies the common name value.

getEmail

public java.lang.String getEmail()
Returns the email address that is associated with this certificate.

Returns:
A string value that specifies the email address.

setEmail

public void setEmail(java.lang.String email)
Sets the email address that is associated with this certificate.

Parameters:
email - A string value that specifies the email address.

getOrganizationalUnit

public java.lang.String getOrganizationalUnit()
Returns the organizational unit that is associated with this certificate.

Returns:
A string value that specifies the organizational unit.

setOrganizationalUnit

public void setOrganizationalUnit(java.lang.String organizationUnit)
Sets the organizational unit that is associated with this certificate.

Parameters:
organizationUnit - A string value that specifies the organizational unit.

getSubjectName

public java.lang.String getSubjectName()
Returns the subject name that is associated with this certificate.

Returns:
A string value that specifies the subject name.

setSubjectName

public void setSubjectName(java.lang.String subjectName)
Sets the subject name that is associated with this certificate.

Parameters:
subjectName - A string value that specifies the subject name.

getOrganization

public java.lang.String getOrganization()
Returns the organization that is associated with this certificate.

Returns:
A string value that specifies the organization.

setOrganization

public void setOrganization(java.lang.String organization)
Sets the organization that is associated with this certificate.

Parameters:
organization - A string value that specifies the organization.

getCountry

public java.lang.String getCountry()
Returns the country that is associated with this certificate.

Returns:
A string value that specifies the country.

setCountry

public void setCountry(java.lang.String country)
Sets the country that is associated with this certificate.

Parameters:
country - A string value that specifies the country.

getCertificate

public CertificateInformation getCertificate()
Returns a CertificateInformation object that represents information about the certificate.

Returns:
A CertificateInformation object.

setCertificate

public void setCertificate(CertificateInformation identityCertificate)
Sets a CertificateInformation object that represents information about the certificate.

Parameters:
identityCertificate - A CertificateInformation object.

getState

public java.lang.String getState()
Returns the state that is associated with this certificate.

Returns:
A string value that specifies the state.

setState

public void setState(java.lang.String state)
Sets the state that is associated with this certificate.

Parameters:
state - A string value that specifies the state.

getSerialNumber

public java.lang.String getSerialNumber()
Returns the serial number that is associated with this certificate.

Returns:
A string value that specifies the serial number.

setSerialNumber

public void setSerialNumber(java.lang.String serialNumber)
Sets the serial number that is associated with this certificate.

Parameters:
serialNumber - A string value that specifies the serial number.

getLocality

public java.lang.String getLocality()
Returns the locality that is associated with this certificate.

Returns:
A string value that specifies the locality.

setLocality

public void setLocality(java.lang.String locality)
Sets the locality that is associated with this certificate.

Parameters:
locality - A string value that specifies the locality.

getTitle

public java.lang.String getTitle()
Returns the title that is associated with this certificate.

Returns:
A string value that specifies the title.

setTitle

public void setTitle(java.lang.String title)
Sets the title that is associated with this certificate.

Parameters:
title - A string value that specifies the title.

getSurname

public java.lang.String getSurname()
Returns the surname that is associated with this certificate.

Returns:
A string value that specifies the surname.

setSurname

public void setSurname(java.lang.String surname)
Sets the surname that is associated with this certificate.

Parameters:
surname - A string value that specifies the surname.

getGivenName

public java.lang.String getGivenName()
Returns the given name that is associated with this certificate.

Returns:
A string value that specifies the given name.

setGivenName

public void setGivenName(java.lang.String givenName)
Sets the surname that is associated with this certificate.

Parameters:
givenName - A string value that specifies the surname.

getInitials

public java.lang.String getInitials()
Returns the initials that is associated with this certificate.

Returns:
A string value that specifies the initials.

setInitials

public void setInitials(java.lang.String initials)
Sets the initials that is associated with this certificate.

Parameters:
initials - A string value that specifies the initials.

getPseudonym

public java.lang.String getPseudonym()
Returns the pseudonym value that is associated with this certificate.

Returns:
A string value that specifies the pseudonym value.

setPseudonym

public void setPseudonym(java.lang.String pseudonym)
Sets the pseudonym value that is associated with this certificate.

Parameters:
pseudonym - A string value that specifies the pseudonym value.

getGenerationQualifier

public java.lang.String getGenerationQualifier()
Returns the generation qualifier value that is associated with this certificate.

Returns:
A string value that specifies the generation qualifier value.

setGenerationQualifier

public void setGenerationQualifier(java.lang.String generationQualifier)
Sets the generation qualifier value that is associated with this certificate.

Parameters:
generationQualifier - A string value that specifies the generation qualifier value.

getDNQualifier

public java.lang.String getDNQualifier()
Returns the DNQualifier value that is associated with this certificate.

Returns:
A string value that specifies the DNQualifier value.

setDNQualifier

public void setDNQualifier(java.lang.String dnQualifier)
Sets the DNQualifier value that is associated with this certificate.

Parameters:
dnQualifier - A string value that specifies the DNQualifier value.


[an error occurred while processing this directive] [an error occurred while processing this directive]