
eu.europa.esig.dss.simplecertificatereport.jaxb.XmlSubject Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.24 at 03:19:25 PM CET
//
package eu.europa.esig.dss.simplecertificatereport.jaxb;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Subject complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Subject">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="commonName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="surname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="pseudonym" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="organizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="organizationUnit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Subject", propOrder = {
"commonName",
"surname",
"givenName",
"pseudonym",
"organizationName",
"organizationUnit",
"email",
"locality",
"state",
"country"
})
public class XmlSubject implements Serializable
{
private final static long serialVersionUID = 1L;
protected String commonName;
protected String surname;
protected String givenName;
protected String pseudonym;
protected String organizationName;
protected String organizationUnit;
protected String email;
protected String locality;
protected String state;
protected String country;
/**
* Gets the value of the commonName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCommonName() {
return commonName;
}
/**
* Sets the value of the commonName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCommonName(String value) {
this.commonName = value;
}
/**
* Gets the value of the surname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSurname() {
return surname;
}
/**
* Sets the value of the surname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSurname(String value) {
this.surname = value;
}
/**
* Gets the value of the givenName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGivenName() {
return givenName;
}
/**
* Sets the value of the givenName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGivenName(String value) {
this.givenName = value;
}
/**
* Gets the value of the pseudonym property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPseudonym() {
return pseudonym;
}
/**
* Sets the value of the pseudonym property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPseudonym(String value) {
this.pseudonym = value;
}
/**
* Gets the value of the organizationName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrganizationName() {
return organizationName;
}
/**
* Sets the value of the organizationName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrganizationName(String value) {
this.organizationName = value;
}
/**
* Gets the value of the organizationUnit property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrganizationUnit() {
return organizationUnit;
}
/**
* Sets the value of the organizationUnit property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrganizationUnit(String value) {
this.organizationUnit = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the locality property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocality() {
return locality;
}
/**
* Sets the value of the locality property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocality(String value) {
this.locality = value;
}
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setState(String value) {
this.state = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy