OperationCollectionRepresentation allOperations;
@Given("^I have a poller for agent '([^']*)'$")
public void iHaveAPollerForAgent(int arg1) throws Exception {
GId agentId = getMoId(arg1);
poller = new OperationsByAgentAndStatusPollerImpl(deviceControlResource, agentId.getValue(), OperationStatus.PENDING,
operationProcessor);
poller.start();
}