Home | History | Annotate | Download | only in methods

Lines Matching defs:URI

34 import java.net.URI;
43 * supplied Request-URI. If the Request-URI refers to an already
66 public HttpPut(final URI uri) {
68 setURI(uri);
72 * @throws IllegalArgumentException if the uri is invalid.
74 public HttpPut(final String uri) {
76 setURI(URI.create(uri));