Searched refs:RetrievalMethod (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DRetrievalMethod.java26 * $Id: RetrievalMethod.java,v 1.8 2005/05/10 16:35:35 mullan Exp $
39 * A representation of the XML <code>RetrievalMethod</code> element as
42 * A <code>RetrievalMethod</code> object is used to convey a reference to
47 * &lt;element name="RetrievalMethod" type="ds:RetrievalMethodType"/&gt;
57 * A <code>RetrievalMethod</code> instance may be created by invoking one of the
64 * RetrievalMethod rm = factory.newRetrievalMethod
74 public interface RetrievalMethod extends URIReference, XMLStructure { interface in inherits:URIReference,XMLStructure
78 * list} of {@link Transform}s of this <code>RetrievalMethod</code>.
95 * <code>RetrievalMethod</code> and applies the specified
102 * <code>RetrievalMethod</cod
[all...]
H A DKeyInfoFactory.java414 * Creates a <code>RetrievalMethod</code> from the specified URI.
418 * @return a <code>RetrievalMethod</code>
423 public abstract RetrievalMethod newRetrievalMethod(String uri);
426 * Creates a <code>RetrievalMethod</code> from the specified parameters.
435 * @return a <code>RetrievalMethod</code>
442 public abstract RetrievalMethod newRetrievalMethod(String uri, String type,
499 * default to dereference URIs in {@link RetrievalMethod} objects.
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DRetrievalMethod.java37 public class RetrievalMethod extends SignatureElementProxy class in inherits:SignatureElementProxy,KeyInfoContent
58 * Constructor RetrievalMethod
64 public RetrievalMethod(Element element, String BaseURI) method in class:RetrievalMethod
70 * Constructor RetrievalMethod
77 public RetrievalMethod(Document doc, String URI, Transforms transforms, method in class:RetrievalMethod
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DURIReferenceException.java32 import javax.xml.crypto.dsig.keyinfo.RetrievalMethod;
45 * @see RetrievalMethod#dereference(XMLCryptoContext)
H A DKeySelector.java32 import javax.xml.crypto.dsig.keyinfo.RetrievalMethod;
101 * selector supports resolving {@link RetrievalMethod} types, the
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMRetrievalMethod.java46 import javax.xml.crypto.dsig.keyinfo.RetrievalMethod;
56 * DOM-based implementation of RetrievalMethod.
62 implements RetrievalMethod, DOMURIReference {
117 * @param rmElem a RetrievalMethod element
179 (ownerDoc, "RetrievalMethod", XMLSignature.XMLNS, dsPrefix);
234 // guard against RetrievalMethod loops
240 if ("RetrievalMethod".equals(root.getLocalName())) {
242 "It is forbidden to have one RetrievalMethod point " +
278 if (!(obj instanceof RetrievalMethod)) {
281 RetrievalMethod or
[all...]
H A DDOMKeyInfoFactory.java78 public RetrievalMethod newRetrievalMethod(String uri) {
82 public RetrievalMethod newRetrievalMethod(String uri, String type,
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/implementations/
H A DRetrievalMethodResolver.java42 import com.sun.org.apache.xml.internal.security.keys.content.RetrievalMethod;
61 * other locations. The location is specified using the ds:RetrievalMethod
95 RetrievalMethod rm = new RetrievalMethod(element, BaseURI);
98 if (RetrievalMethod.TYPE_RAWX509.equals(type)) {
157 RetrievalMethod rm = new RetrievalMethod(element, BaseURI);
160 if (RetrievalMethod.TYPE_RAWX509.equals(type)) {
228 static private XMLSignatureInput resolveInput(RetrievalMethod rm,String BaseURI) throws XMLSecurityException{
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java108 * RetrievalMethod: supports rawX509Certificate and X509Data types. If
160 // check RetrievalMethod
161 } else if (kiType instanceof RetrievalMethod) {
162 RetrievalMethod rm = (RetrievalMethod) kiType;
H A DKeySelectors.java313 } else if (xmlStructure instanceof RetrievalMethod) {
316 RetrievalMethod rm = (RetrievalMethod) xmlStructure;
328 ("Unsupported RetrievalMethod type");
H A DGenerationTests.java634 RetrievalMethod rm = kifac.newRetrievalMethod("#object-4",
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/
H A DKeyInfo.java42 import com.sun.org.apache.xml.internal.security.keys.content.RetrievalMethod;
273 this.add(new RetrievalMethod(this._doc, URI, transforms, Type));
281 public void add(RetrievalMethod retrievalmethod) {
374 *@return the number of the RetrievalMethod tags
505 *@return the asked RetrievalMethod element, null if the index is too big
508 public RetrievalMethod itemRetrievalMethod(int i)
515 return new RetrievalMethod(e, this._baseURI);
662 * @return If the KeyInfo contains a RetrievalMethod node

Completed in 45 milliseconds