Home | History | Annotate | Download | only in client

Lines Matching refs:uri

34 import java.net.URI;
43 private final Set<URI> uris;
47 this.uris = new HashSet<URI>();
51 * Returns true if this collection contains the given URI.
53 public boolean contains(final URI uri) {
54 return this.uris.contains(uri);
58 * Adds a new URI to the list of redirects.
60 public void add(final URI uri) {
61 this.uris.add(uri);
65 * Removes a URI from the list of redirects.
67 public boolean remove(final URI uri) {
68 return this.uris.remove(uri);