{
domains = session.getConnection().getServerConnection().getDomains();
}
catch ( IOException e )
{
throw new RuntimeIOException( "Couldn't get candate domains", e );
}
List<String> result = new ArrayList<String>( Arrays.asList( domains ) );
Collections.sort( result );
return result;
}