OperationCollectionRepresentation allOperations;
@When("^I create an operation for device '([^']*)'$")
public void iCreateAnOperationForDevice(int deviceNum) throws Exception {
GId deviceId = getMoId(deviceNum);
OperationRepresentation operationRepresentation = new OperationRepresentation();
operationRepresentation.setDeviceId(deviceId);
operationRepresentation.set("smaple_value", "sample_operation_type");
operation1 = deviceControlResource.create(operationRepresentation);
}