Kevin Conaway <kevin.conaway <at> gmail.com> writes: > Would it be possible add a new class called URI to facilitate building URIs to use in client calls? It can be cumbersome to either build the uri as a string by hand or use the heavy Reference class.I suggest adding a lightweight class called URI that allows users to easily build URIs like the following:
Check out the URI class introduced in JDK 1.4... it might do much of what you're looking for: http://java.sun.com/javase/6/docs/api/java/net/URI.html --Mike

