use of org.opensmartgridplatform.cucumber.platform.smartmetering.support.ws.smartmetering.bundle.SetPushSetupAlarmRequestBuilder in project open-smart-grid-platform by OSGP.
the class BundledSetPushSetupAlarmSteps method theBundleRequestContainsASetPushSetupAlarmAction.
@Given("^the bundle request contains a set push setup alarm action with parameters$")
public void theBundleRequestContainsASetPushSetupAlarmAction(final Map<String, String> parameters) throws Throwable {
final SetPushSetupAlarmRequest action = new SetPushSetupAlarmRequestBuilder().fromParameterMap(parameters).build();
this.addActionToBundleRequest(action);
}
use of org.opensmartgridplatform.cucumber.platform.smartmetering.support.ws.smartmetering.bundle.SetPushSetupAlarmRequestBuilder in project open-smart-grid-platform by OSGP.
the class BundledSetPushSetupAlarmSteps method theBundleRequestContainsASetPushSetupAlarmAction.
@Given("^the bundle request contains a set push setup alarm action$")
public void theBundleRequestContainsASetPushSetupAlarmAction() throws Throwable {
final SetPushSetupAlarmRequest action = new SetPushSetupAlarmRequestBuilder().withDefaults().build();
this.addActionToBundleRequest(action);
}
Aggregations