Searched refs:XPathType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXPathFilter2Transform.java39 import javax.xml.crypto.dsig.spec.XPathType;
91 XPathType.Filter filter = null;
93 filter = XPathType.Filter.INTERSECT;
95 filter = XPathType.Filter.SUBTRACT;
97 filter = XPathType.Filter.UNION;
99 throw new MarshalException("Unknown XPathType filter type"
113 list.add(new XPathType(xPath, filter, namespaceMap));
115 list.add(new XPathType(xPath, filter));
134 XPathType xpathType = (XPathType) lis
[all...]
H A DDOMUtils.java325 XPathType type = (XPathType) types.get(i);
326 XPathType otype = (XPathType) otypes.get(i);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/spec/
H A DXPathType.java26 * $Id: XPathType.java,v 1.4 2005/05/10 16:40:17 mullan Exp $
46 * type="xf:XPathType"/>
48 * <complexType name="XPathType">
70 public class XPathType { class
112 * Creates an <code>XPathType</code> instance with the specified XPath
121 public XPathType(String expression, Filter filter) { method in class:XPathType
134 * Creates an <code>XPathType</code> instance with the specified XPath
150 public XPathType(String expression, Filter filter, Map namespaceMap) { method in class:XPathType
H A DXPathFilter2ParameterSpec.java39 * The parameters include a list of one or more {@link XPathType} objects.
54 * @param xPathList a list of one or more {@link XPathType} objects. The
57 * entries that are not of type {@link XPathType}
72 if (!(xPathListCopy.get(i) instanceof XPathType)) {
81 * Returns a list of one or more {@link XPathType} objects.
86 * @return a <code>List</code> of <code>XPathType</code> objects
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DGenerationTests.java987 List<XPathType> types = new ArrayList<XPathType>(3);
988 types.add(new XPathType(" //ToBeSigned ", XPathType.Filter.INTERSECT));
989 types.add(new XPathType(" //NotToBeSigned ",
990 XPathType.Filter.SUBTRACT));
991 types.add(new XPathType(" //ReallyToBeSigned ",
992 XPathType.Filter.UNION));
1005 (new XPathType(" / ", XPathType
[all...]

Completed in 269 milliseconds