*
* @exception ConnectException If the administration connection is closed or broken.
* @exception AdminException If the request fails.
*/
public List getReaders() throws ConnectException, AdminException {
GetRightsRequest request = new GetRightsRequest(getName());
GetRightsReply reply = (GetRightsReply) doRequest(request);
Vector list = new Vector();
Hashtable users = reply.getReaders();
if (users != null) {