Class XmlRevocationRef
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlRevocationRef
-
- All Implemented Interfaces:
Serializable
public class XmlRevocationRef extends Object implements Serializable
Java class for RevocationRef complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RevocationRef"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Origin" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationRefOriginType" maxOccurs="unbounded"/> <element name="DigestAlgoAndValue" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValue" minOccurs="0"/> <element name="ProducedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <choice minOccurs="0"> <element name="ResponderIdName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="ResponderIdKey" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> </choice> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected XmlDigestAlgoAndValuedigestAlgoAndValueprotected List<RevocationRefOrigin>originsprotected DateproducedAtprotected byte[]responderIdKeyprotected StringresponderIdName
-
Constructor Summary
Constructors Constructor Description XmlRevocationRef()
-
Method Summary
Modifier and Type Method Description XmlDigestAlgoAndValuegetDigestAlgoAndValue()Gets the value of the digestAlgoAndValue property.List<RevocationRefOrigin>getOrigins()Gets the value of the origins property.DategetProducedAt()Gets the value of the producedAt property.byte[]getResponderIdKey()Gets the value of the responderIdKey property.StringgetResponderIdName()Gets the value of the responderIdName property.voidsetDigestAlgoAndValue(XmlDigestAlgoAndValue value)Sets the value of the digestAlgoAndValue property.voidsetProducedAt(Date value)Sets the value of the producedAt property.voidsetResponderIdKey(byte[] value)Sets the value of the responderIdKey property.voidsetResponderIdName(String value)Sets the value of the responderIdName property.
-
-
-
Field Detail
-
origins
protected List<RevocationRefOrigin> origins
-
digestAlgoAndValue
protected XmlDigestAlgoAndValue digestAlgoAndValue
-
producedAt
protected Date producedAt
-
responderIdName
protected String responderIdName
-
responderIdKey
protected byte[] responderIdKey
-
-
Method Detail
-
getOrigins
public List<RevocationRefOrigin> getOrigins()
Gets the value of the origins property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the origins property.For example, to add a new item, do as follows:
getOrigins().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getDigestAlgoAndValue
public XmlDigestAlgoAndValue getDigestAlgoAndValue()
Gets the value of the digestAlgoAndValue property.- Returns:
- possible object is
XmlDigestAlgoAndValue
-
setDigestAlgoAndValue
public void setDigestAlgoAndValue(XmlDigestAlgoAndValue value)
Sets the value of the digestAlgoAndValue property.- Parameters:
value- allowed object isXmlDigestAlgoAndValue
-
getProducedAt
public Date getProducedAt()
Gets the value of the producedAt property.- Returns:
- possible object is
String
-
setProducedAt
public void setProducedAt(Date value)
Sets the value of the producedAt property.- Parameters:
value- allowed object isString
-
getResponderIdName
public String getResponderIdName()
Gets the value of the responderIdName property.- Returns:
- possible object is
String
-
setResponderIdName
public void setResponderIdName(String value)
Sets the value of the responderIdName property.- Parameters:
value- allowed object isString
-
getResponderIdKey
public byte[] getResponderIdKey()
Gets the value of the responderIdKey property.- Returns:
- possible object is byte[]
-
setResponderIdKey
public void setResponderIdKey(byte[] value)
Sets the value of the responderIdKey property.- Parameters:
value- allowed object is byte[]
-
-