import java.util.*; class URI { private String resource; private Hashtable arguments; URI(String resource, Hashtable arguments) { this.resource = resource; this.arguments = arguments; } URI(String resource) { this.resource = resource; this.arguments = null; } public String getResource() { return resource; } public Hashtable getArguments() { return arguments; } public String toString() { return "Resource: '"+resource+"' Arguments: "+arguments; } }