Package eu.europa.esig.dss.policy.jaxb
Class ListAlgo
- java.lang.Object
-
- eu.europa.esig.dss.policy.jaxb.ListAlgo
-
- All Implemented Interfaces:
Serializable
public class ListAlgo extends Object implements Serializable
List of algorithmsJava class for ListAlgo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ListAlgo"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Algo" type="{http://dss.esig.europa.eu/validation/policy}Algo" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Method Detail
-
getAlgo
public List<Algo> getAlgo()
Gets the value of the algo 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 algo property.For example, to add a new item, do as follows:
getAlgo().add(newItem);Objects of the following type(s) are allowed in the list
Algo
-
-