/* Comment copied from interface. */
public Collection listResources () throws RemoteException {
RmsConnection con = null;
try {
con = conFac.getConnection();
Collection resRaw = con.listResources();
Collection res = new ArrayList ();
for (Iterator i = resRaw.iterator(); i.hasNext();) {
RmsEntry e = (RmsEntry)i.next();
addAsTyped(res, e);
}