Class XmlSignerInfo
java.lang.Object
eu.europa.esig.dss.diagnostic.jaxb.XmlSignerInfo
- All Implemented Interfaces:
Serializable
public class XmlSignerInfo extends Object implements Serializable
Java class for SignerInfo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SignerInfo"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="IssuerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="Ski" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> </sequence> <attribute name="Current" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected Boolean
current
protected String
issuerName
protected BigInteger
serialNumber
protected byte[]
ski
-
Constructor Summary
Constructors Constructor Description XmlSignerInfo()
-
Method Summary
Modifier and Type Method Description String
getIssuerName()
Gets the value of the issuerName property.BigInteger
getSerialNumber()
Gets the value of the serialNumber property.byte[]
getSki()
Gets the value of the ski property.Boolean
isCurrent()
Gets the value of the current property.void
setCurrent(Boolean value)
Sets the value of the current property.void
setIssuerName(String value)
Sets the value of the issuerName property.void
setSerialNumber(BigInteger value)
Sets the value of the serialNumber property.void
setSki(byte[] value)
Sets the value of the ski property.
-
Field Details
-
issuerName
-
serialNumber
-
ski
protected byte[] ski -
current
-
-
Constructor Details
-
XmlSignerInfo
public XmlSignerInfo()
-
-
Method Details
-
getIssuerName
Gets the value of the issuerName property.- Returns:
- possible object is
String
-
setIssuerName
Sets the value of the issuerName property.- Parameters:
value
- allowed object isString
-
getSerialNumber
Gets the value of the serialNumber property.- Returns:
- possible object is
BigInteger
-
setSerialNumber
Sets the value of the serialNumber property.- Parameters:
value
- allowed object isBigInteger
-
getSki
public byte[] getSki()Gets the value of the ski property.- Returns:
- possible object is byte[]
-
setSki
public void setSki(byte[] value)Sets the value of the ski property.- Parameters:
value
- allowed object is byte[]
-
isCurrent
Gets the value of the current property.- Returns:
- possible object is
Boolean
-
setCurrent
Sets the value of the current property.- Parameters:
value
- allowed object isBoolean
-