Searched defs:uri (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/security/
H A DURIParameter.java38 private java.net.URI uri; field in class:URIParameter
44 * @param uri the URI pointing to the data.
48 public URIParameter(java.net.URI uri) { argument
49 if (uri == null) {
52 this.uri = uri;
58 * @return uri the URI.
61 return uri;
/openjdk7/langtools/test/tools/javac/api/
H A DT6437138.java38 public JFO(URI uri, JavaFileObject.Kind kind) { argument
39 super(uri, kind);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DOctetStreamData.java40 private String uri; field in class:OctetStreamData
61 * @param uri the URI String identifying the data object (may be
68 public OctetStreamData(InputStream octetStream, String uri, argument
74 this.uri = uri;
94 return uri;
/openjdk7/jdk/src/share/classes/java/net/
H A DCookiePolicy.java43 public boolean shouldAccept(URI uri, HttpCookie cookie) {
52 public boolean shouldAccept(URI uri, HttpCookie cookie) {
61 public boolean shouldAccept(URI uri, HttpCookie cookie) {
62 return HttpCookie.domainMatches(cookie.getDomain(), uri.getHost());
70 * @param uri the URI to consult accept policy with
75 public boolean shouldAccept(URI uri, HttpCookie cookie); argument
H A DCookieHandler.java102 * specified uri in the request header.
117 * @param uri a <code>URI</code> representing the intended use for the
131 get(URI uri, Map<String, List<String>> requestHeaders) argument
139 * @param uri a <code>URI</code> where the cookies come from
148 put(URI uri, Map<String, List<String>> responseHeaders) argument
H A DCookieStore.java57 * @param uri the uri this cookie associated with.
67 public void add(URI uri, HttpCookie cookie); argument
78 * @throws NullPointerException if <tt>uri</tt> is <tt>null</tt>
83 public List<HttpCookie> get(URI uri); argument
108 * @param uri the uri this cookie associated with.
118 public boolean remove(URI uri, HttpCookie cookie); argument
H A DProxySelector.java135 * @param uri
147 public abstract List<Proxy> select(URI uri); argument
156 * @param uri
165 public abstract void connectFailed(URI uri, SocketAddress sa, IOException ioe); argument
H A DResponseCache.java115 * Retrieve the cached response based on the requesting uri,
121 * @param uri a <code>URI</code> used to reference the requested
139 get(URI uri, String rqstMethod, Map<String, List<String>> rqstHeaders) argument
151 * @param uri a <code>URI</code> used to reference the requested
162 public abstract CacheRequest put(URI uri, URLConnection conn) throws IOException; argument
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPaths.java115 * @param uri
121 * if preconditions on the {@code uri} parameter do not hold. The
131 public static Path get(URI uri) { argument
132 String scheme = uri.getScheme();
138 return FileSystems.getDefault().provider().getPath(uri);
143 return provider.getPath(uri);
H A DFileSystems.java204 * if the pre-conditions for the {@code uri} parameter are not met
213 public static FileSystem getFileSystem(URI uri) { argument
214 String scheme = uri.getScheme();
217 return provider.getFileSystem(uri);
247 * @param uri
256 * if the pre-conditions for the {@code uri} parameter are not met,
269 public static FileSystem newFileSystem(URI uri, Map<String,?> env) argument
272 return newFileSystem(uri, env, null);
286 * @param uri
298 * if the pre-conditions for the {@code uri} paramete
314 newFileSystem(URI uri, Map<String,?> env, ClassLoader loader) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DPrefixFactory.java41 public String getPrefix(String uri); argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DAbstractCallback.java42 URI uri; field in class:AbstractCallback.Request
46 uri = u;
61 URI uri = msg.getRequestURI();
62 Request req = (Request) requests.get (uri);
64 req = new Request (uri);
65 requests.put (uri, req);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DJarFileSystemProvider.java64 protected Path uriToPath(URI uri) { argument
65 String scheme = uri.getScheme();
70 String uristr = uri.toString();
73 uri = new URI(uristr);
74 return Paths.get(new URI("file", uri.getHost(), uri.getPath(), null))
82 public Path getPath(URI uri) { argument
83 FileSystem fs = getFileSystem(uri);
84 String path = uri.getFragment();
86 String uristr = uri
[all...]
/openjdk7/jdk/test/sun/net/www/httptest/
H A DAbstractCallback.java42 URI uri; field in class:AbstractCallback.Request
46 uri = u;
61 URI uri = msg.getRequestURI();
62 Request req = (Request) requests.get (uri);
64 req = new Request (uri);
65 requests.put (uri, req);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11NamespaceBinder.java102 protected boolean prefixBoundToNullURI(String uri, String localpart) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DPSVIProvider.java86 * @param uri The namespace name of an attribute.
90 public AttributePSVI getAttributePSVIByName(String uri, argument
H A DXSLoader.java79 * @param uri The location of the XML Schema document to be read.
82 public XSModel loadURI(String uri); argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNameSpace.java54 * @param uri URI of this element
56 public NameSpace(String prefix, String uri) argument
59 m_uri = uri;
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DURISyntax.java48 private URI uri; field in class:URISyntax
53 * @param uri URI.
56 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
58 protected URISyntax(URI uri) { argument
59 this.uri = verify (uri);
62 private static URI verify(URI uri) { argument
63 if (uri == null) {
64 throw new NullPointerException(" uri is null");
66 return uri;
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DDestination.java65 * @param uri URI.
68 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
70 public Destination(URI uri) { argument
71 super (uri);
H A DPrinterMoreInfo.java49 * <CODE>toString()</CODE> gives the IPP uri value.
64 * @param uri URI.
67 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
69 public PrinterMoreInfo(URI uri) { argument
70 super (uri);
H A DPrinterMoreInfoManufacturer.java50 * <CODE>toString()</CODE> gives the IPP uri value.
66 * @param uri URI.
69 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
71 public PrinterMoreInfoManufacturer(URI uri) { argument
72 super (uri);
H A DPrinterURI.java40 * IPP printer-uri attribute. The string form returned by
41 * <CODE>toString()</CODE> gives the IPP printer-uri value.
57 * @param uri URI of the printer
60 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
62 public PrinterURI(URI uri) { argument
63 super (uri);
108 * name is <CODE>"printer-uri"</CODE>.
113 return "printer-uri";
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReference.java62 * @param uri the Uniform Resource Identifier that qualifies an
65 void setURI(String uri); argument
/openjdk7/jaxp/src/org/xml/sax/
H A DAttributes.java202 * @param uri The Namespace URI, or the empty string if
208 public int getIndex (String uri, String localName); argument
227 * @param uri The Namespace URI, or the empty String if the
234 public abstract String getType (String uri, String localName); argument
257 * @param uri The Namespace URI, or the empty String if the
263 public abstract String getValue (String uri, String localName); argument

Completed in 68 milliseconds

1234567891011>>