Searched refs:URI (Results 1 - 25 of 602) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/desktop/
H A DOpenURIEvent.java28 import java.net.URI;
32 * Event sent when the app is asked to open a {@code URI}.
40 final URI uri;
44 * @param uri {@code URI}
46 public OpenURIEvent(final URI uri) {
51 * Get the {@code URI} the app was asked to open
52 * @return the {@code URI}
54 public URI getURI() {
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A Djava_net_URI.java27 * @summary Tests URI encoding
31 import java.net.URI;
34 public final class java_net_URI extends AbstractTest<URI> {
39 protected URI getObject() {
41 return new URI("http://www.sun.com/");
47 protected URI getAnotherObject() {
49 return new URI("ftp://www.sun.com/");
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DExternalVocabulary.java33 * An external vocabulary has a URI that refers to a vocabulary.
40 * A URI that refers to the external vocabulary.
42 public final String URI; field in class:ExternalVocabulary
45 * The vocabulary that is refered to by the URI.
49 public ExternalVocabulary(String URI, Vocabulary vocabulary) { argument
50 if (URI == null || vocabulary == null) {
54 this.URI = URI;
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/
H A DURIException.java28 import java.net.URI;
33 * condition involving a {@code URI} address. The Print Service API does not
41 * Indicates that the printer cannot access the {@code URI} address. For
43 * data and cannot even establish a connection to the {@code URI} address.
48 * Indicates that the printer does not support the {@code URI} scheme
49 * ("http", "ftp", etc.) in the {@code URI} address.
60 * Returns the {@code URI}.
62 * @return the {@code URI} that is the cause of this exception
64 public URI getUnsupportedURI();
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/misc/
H A DJavaNetUriAccess.java28 import java.net.URI;
32 * Create a URI of pre-validated scheme and path.
34 URI create(String scheme, String path);
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DCookieStore.java48 * <p>A cookie to store may or may not be associated with an URI. If it
49 * is not associated with an URI, the cookie's domain and path attribute
50 * will indicate where it comes from. If it is associated with an URI and
51 * its domain and path attribute are not specified, given URI will indicate
54 * <p>If a cookie corresponding to the given URI already exists,
59 * with an URI
67 public void add(URI uri, HttpCookie cookie);
71 * Retrieve cookies associated with given URI, or whose domain matches the
72 * given URI. Only cookies that have not expired are returned.
76 * return empty list if no cookies match the given URI
[all...]
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) {
72 * @param uri the URI to consult accept policy with
77 public boolean shouldAccept(URI uri, HttpCookie cookie);
/openjdk10/jdk/test/java/net/URI/
H A DRelativeEncoding.java26 * @summary URI.resolve escapes characters in parameter URI
29 import java.net.URI;
35 URI one = new URI("Relative%20with%20spaces");
36 URI two = (new File("/tmp/dir with spaces/File with spaces")).toURI();
37 URI three = two.resolve(one);
39 throw new RuntimeException("Bad encoding on URI.resolve");
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicySourceModelContext.java28 import java.net.URI;
38 Map<URI,PolicySourceModel> policyModels;
47 private Map<URI,PolicySourceModel> getModels() {
49 policyModels = new HashMap<URI,PolicySourceModel>();
54 public void addModel(final URI modelUri, final PolicySourceModel model) {
62 public boolean containsModel(final URI modelUri) {
66 PolicySourceModel retrieveModel(final URI modelUri) {
70 PolicySourceModel retrieveModel(final URI modelUri, final URI digestAlgorithm, final String digest) {
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DURISyntax.java29 import java.net.URI;
34 * (URI). Once constructed, a {@code URI} attribute's value is immutable.
46 * {@code URI} value of this {@code URI} attribute.
50 private URI uri;
53 * Constructs a {@code URI} attribute with the specified {@code URI}.
55 * @param uri the {@code URI}
58 protected URISyntax(URI ur
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DURIParameter.java30 * A parameter that contains a URI pointing to data intended for a
38 private java.net.URI uri;
41 * Constructs a URIParameter with the URI pointing to
44 * @param uri the URI pointing to the data.
46 * @exception NullPointerException if the specified URI is null.
48 public URIParameter(java.net.URI uri) {
50 throw new NullPointerException("invalid null URI");
56 * Returns the URI.
58 * @return uri the URI.
60 public java.net.URI getUR
[all...]
H A DDomainLoadStoreParameter.java28 import java.net.URI;
108 private final URI configuration;
117 * {@code java.net.URI} fragment component when it is necessary
131 public DomainLoadStoreParameter(URI configuration,
146 public URI getConfiguration() {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DBoundEndpoint.java31 import java.net.URI;
61 @NotNull URI getAddress();
77 @NotNull URI getAddress(String baseAddress);
/openjdk10/jdk/test/com/sun/org/apache/xml/internal/security/transforms/
H A DMyTransform.java29 public static final String URI = field in class:MyTransform
35 Transform.register(URI, "MyTransform");
42 return URI;
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DAltCatalog.java27 import java.net.URI;
37 URI catalogURI;
45 * must be made absolute with respect to the base URI currently in effect.
48 * @throws CatalogException if converting to catalog URI failed
61 * Returns the catalog attribute as a URI String.
69 * Returns the catalog attribute as a URI.
72 URI getCatalogURI() {
83 * @return The replacement URI if the match is successful, null if not.
85 public URI matchURI(String id, int currentMatch) {
H A DCatalogManager.java27 import java.net.URI;
66 * or do not have a URL protocol handler for the URI scheme
70 public static Catalog catalog(CatalogFeatures features, URI... uris) {
114 * or do not have a URL protocol handler for the URI scheme
118 public static CatalogResolver catalogResolver(CatalogFeatures features, URI... uris) {
/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DModuleReference.java29 import java.net.URI;
53 private final URI location;
63 protected ModuleReference(ModuleDescriptor descriptor, URI location) {
80 * <p> This URI, when present, can be used as the {@linkplain
88 public final Optional<URI> location() {
/openjdk10/jdk/test/java/net/CookieHandler/
H A DB6277794.java47 cs.add(new URI("http://www.sun.com/solaris"), c1);
48 cs.add(new URI("http://www.sun.com/java"), c2);
50 List<URI> uris = cs.getURIs();
52 !uris.get(0).equals(new URI("http://www.sun.com"))) {
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DEncodingAlgorithmContentHandler.java48 * <code>URI TO BE DEFINED</code>
81 * @param URI the URI of the encoding algorithm
90 public void octets(String URI, int algorithm, byte[] b, int start, int length) throws SAXException; argument
99 * @param URI the URI of the encoding algorithm
106 public void object(String URI, int algorithm, Object o) throws SAXException; argument
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DMetaDataResolver.java31 import java.net.URI;
49 public abstract @Nullable ServiceDescriptor resolve(@NotNull URI location);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A Djrtls.js41 var URI = Java.type("java.net.URI"); variable
43 var fs = FileSystems.getFileSystem(URI.create("jrt:/"));
/openjdk10/jdk/test/java/net/URL/
H A DB5086147.java29 * @summary File,URI,URL conversions are strange for UNC path
33 import java.net.URI;
38 URI uri = file.toURI();
/openjdk10/jdk/test/sun/net/www/
H A DParseUtil_6306697.java31 import java.net.URI;
36 URI uri = ParseUtil.toURI(new URL("http://www.example.com"));
38 throw new RuntimeException("Path should be '/' even if given URI string has a empty path");
H A DParseUtil_6380332.java31 import java.net.URI;
36 URI uri = ParseUtil.toURI(new URL("http://suntea.central.sun.com:-1/servlet/SunTEAServlet"));
H A DParseUtil_6478588.java31 import java.net.URI;
37 URI uri = ParseUtil.toURI(new URL("http://localhost/%2"));

Completed in 311 milliseconds

1234567891011>>