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="Issuer" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
</sequence>
<attribute name="Processed" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
</restriction>
</complexContent>
</complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected Stringissuerprotected booleanprocessedprotected BigIntegerserialNumber -
Constructor Summary
Constructors Constructor Description XmlSignerInfo() -
Method Summary
Modifier and Type Method Description StringgetIssuer()Gets the value of the issuer property.BigIntegergetSerialNumber()Gets the value of the serialNumber property.booleanisProcessed()Gets the value of the processed property.voidsetIssuer(String value)Sets the value of the issuer property.voidsetProcessed(boolean value)Sets the value of the processed property.voidsetSerialNumber(BigInteger value)Sets the value of the serialNumber property.
-
Field Details
-
issuer
-
serialNumber
-
processed
protected boolean processed
-
-
Constructor Details
-
XmlSignerInfo
public XmlSignerInfo()
-
-
Method Details
-
getIssuer
Gets the value of the issuer property.- Returns:
- possible object is
String
-
setIssuer
Sets the value of the issuer 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
-
isProcessed
public boolean isProcessed()Gets the value of the processed property. -
setProcessed
public void setProcessed(boolean value)Sets the value of the processed property.
-