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

1234567891011>>

/openjdk7/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/");
/openjdk7/jaxws/src/share/jaxws_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;
/openjdk7/jdk/src/share/classes/javax/print/
H A DURIException.java28 import java.net.URI;
33 * involving a URI address. The Print Service API does not define any print
42 * Indicates that the printer cannot access the URI address.
45 * URI address.
50 * Indicates that the printer does not support the URI
51 * scheme ("http", "ftp", etc.) in the URI address.
62 * Return the URI.
63 * @return the URI that is the cause of this exception.
65 public URI getUnsupportedURI();
/openjdk7/jdk/src/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 speicifed, 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) {
70 * @param uri the URI to consult accept policy with
75 public boolean shouldAccept(URI uri, HttpCookie cookie);
/openjdk7/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");
/openjdk7/jaxws/src/share/jaxws_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) {
H A DPolicyReferenceData.java31 import java.net.URI;
41 private static final URI DEFAULT_DIGEST_ALGORITHM_URI;
45 URI tempUri = null;
47 tempUri = new URI("http://schemas.xmlsoap.org/ws/2004/09/policy/Sha1Exc");
56 private final URI referencedModelUri;
58 private final URI digestAlgorithmUri;
61 public PolicyReferenceData(URI referencedModelUri) {
67 public PolicyReferenceData(URI referencedModelUri, String expectedDigest, URI usedDigestAlgorithm) {
91 public URI getReferencedModelUr
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DURISyntax.java30 import java.net.URI;
35 * Identifier (URI). Once constructed, a URI attribute's value is immutable.
45 * URI value of this URI attribute.
48 private URI uri;
51 * Constructs a URI attribute with the specified URI.
53 * @param uri URI.
58 protected URISyntax(URI ur
[all...]
/openjdk7/jdk/src/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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DBoundEndpoint.java30 import java.net.URI;
60 @NotNull URI getAddress();
76 @NotNull URI getAddress(String baseAddress);
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DDesktopPeer.java31 import java.net.URI;
97 void mail(URI mailtoURL) throws IOException;
100 * Launches the user default browser to display the given URI.
102 * @param uri the given URI.
106 void browse(URI url) throws IOException;
/openjdk7/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;
/openjdk7/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"))) {
/openjdk7/jdk/src/share/classes/com/sun/jarsigner/
H A DContentSignerParameters.java28 import java.net.URI;
53 public URI getTimestampingAuthority();
/openjdk7/jaxws/src/share/jaxws_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
/openjdk7/jaxws/src/share/jaxws_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);
/openjdk7/jdk/test/sun/net/www/
H A DParseUtil_6306697.java30 import java.net.URI;
35 URI uri = ParseUtil.toURI(new URL("http://www.example.com"));
37 throw new RuntimeException("Path should be '/' even if given URI string has a empty path");
H A DParseUtil_6380332.java30 import java.net.URI;
35 URI uri = ParseUtil.toURI(new URL("http://suntea.central.sun.com:-1/servlet/SunTEAServlet"));
H A DParseUtil_6478588.java30 import java.net.URI;
36 URI uri = ParseUtil.toURI(new URL("http://localhost/%2"));
H A DParseUtil_6274990.java34 URI uri1 = ParseUtil.toURI(new URL("http://www.example.com/%93%fa/"));
/openjdk7/jdk/test/java/net/ProxySelector/
H A DMultiThreadedSystemProxies.java31 import java.net.URI;
41 final URI uri = new URI("http://ubuntu.com");
/openjdk7/jdk/test/java/net/URL/
H A DRelativePath.java30 import java.net.URI;
38 URI uri = new URI(uri1);
44 throw new RuntimeException("URI.resolve didn't return expected result [" + s1 + " versus " + expected + "]");
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DAbstractCallback.java34 * (starting at zero) the request URI has been received.
42 URI uri;
45 Request (URI u) {
61 URI uri = msg.getRequestURI();
73 * the same request URI. n starts at zero and is incremented
79 * each subsequent call using the same request URI.
/openjdk7/jdk/test/sun/net/www/httptest/
H A DAbstractCallback.java34 * (starting at zero) the request URI has been received.
42 URI uri;
45 Request (URI u) {
61 URI uri = msg.getRequestURI();
73 * the same request URI. n starts at zero and is incremented
79 * each subsequent call using the same request URI.

Completed in 298 milliseconds

1234567891011>>