Class XmlFoundRevocation
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XmlOrphanRevocation
,XmlRelatedRevocation
public abstract class XmlFoundRevocation extends Object implements Serializable
Java class for FoundRevocation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="FoundRevocation"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Type" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationType"/> <element name="Origin" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationOriginType" maxOccurs="unbounded" minOccurs="0"/> <element name="RevocationRef" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationRef" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<RevocationOrigin>
origins
protected List<XmlRevocationRef>
revocationRefs
protected RevocationType
type
-
Constructor Summary
Constructors Constructor Description XmlFoundRevocation()
-
Method Summary
Modifier and Type Method Description List<RevocationOrigin>
getOrigins()
Gets the value of the origins property.List<XmlRevocationRef>
getRevocationRefs()
Gets the value of the revocationRefs property.RevocationType
getType()
Gets the value of the type property.void
setType(RevocationType value)
Sets the value of the type property.
-
Field Details
-
Constructor Details
-
XmlFoundRevocation
public XmlFoundRevocation()
-
-
Method Details
-
getType
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
Sets the value of the type property.- Parameters:
value
- allowed object isString
-
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
set
method 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
-
getRevocationRefs
Gets the value of the revocationRefs 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
set
method for the revocationRefs property.For example, to add a new item, do as follows:
getRevocationRefs().add(newItem);
Objects of the following type(s) are allowed in the list
XmlRevocationRef
-