Searched refs:uriReference (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DURIReferenceException.java60 private URIReference uriReference; field in class:URIReferenceException
106 * @param uriReference the <code>URIReference</code> that was being
108 * @throws NullPointerException if <code>uriReference</code> is
112 URIReference uriReference) {
114 if (uriReference == null) {
115 throw new NullPointerException("uriReference cannot be null");
117 this.uriReference = uriReference;
142 return uriReference;
111 URIReferenceException(String message, Throwable cause, URIReference uriReference) argument
H A DURIDereferencer.java61 * @param uriReference the <code>URIReference</code>
68 * @throws NullPointerException if <code>uriReference</code> or
71 * dereferencing the specified <code>uriReference</code>
73 Data dereference(URIReference uriReference, XMLCryptoContext context) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DUri.java156 public static String resolve(String baseUri, String uriReference) throws IOException { argument
157 if (isAbsolute(uriReference))
158 return uriReference;
161 throw new IOException("Unable to resolve relative URI "+uriReference+" without a base URI");
164 throw new IOException("Unable to resolve relative URI "+uriReference+" because base URI is not absolute: "+baseUri);
166 return new URL(new URL(baseUri), uriReference).toString();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/util/
H A DUri.java166 public static String resolve(String baseUri, String uriReference) { argument
167 if (!isAbsolute(uriReference) && baseUri != null && isAbsolute(baseUri)) {
169 return new URL(new URL(baseUri), uriReference).toString();
173 return uriReference;

Completed in 61 milliseconds