package at.gv.egovernment.moa.spss.api.common; import java.util.List; /** * An XPath type of Transform containing multiple filters for * performing set operations on XPath selections. * * @author Patrick Peck * @version $Id$ */ public interface XPathFilter2Transform extends Transform { /** Algorithm URI for the XPath Filter2 Transform. */ public static final String XPATH_FILTER2 = "http://www.w3.org/2002/06/xmldsig-filter2"; /** * Gets the XPathFilters contained in this * XPathFilter2Transform. * * @return The XPathFilters. */ public List getFilters(); }