* @exception AdminException If the request fails.
*/
public final Destination[] getDestinations(int serverId) throws ConnectException, AdminException {
Destination[] dest = null;
GetDestinationsRequest request = new GetDestinationsRequest(serverId);
GetDestinationsReply reply = (GetDestinationsReply) doRequest(request);
String[] ids = reply.getIds();
if ((ids != null) && (ids.length > 0)) {
String[] names = reply.getNames();