}
private void initServer()
throws ConfigException
{
VoteService voteService = VoteService.getCurrent();
if (voteService == null)
throw new ConfigException(L.l("'{0}' requires an active {1}",
getClass().getSimpleName(),
VoteService.class.getSimpleName()));
_manager = voteService.getManager();
if (_manager == null)
throw new IllegalStateException(L.l("distributed vote manager not available"));
}