website.automate.waml.io.model.main.action.AlertAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waml-io Show documentation
Show all versions of waml-io Show documentation
(De)Serializer of the web automation markup language (WAML) for Java
The newest version!
package website.automate.waml.io.model.main.action;
import website.automate.waml.io.model.main.criteria.AlertCriteria;
public class AlertAction extends TimeLimitedAction {
static final String TYPE_NAME = "alert";
private AlertCriteria alert;
public AlertCriteria getAlert() {
return alert;
}
public void setAlert(AlertCriteria alert) {
this.alert = alert;
}
@Override
public String getTypeName() {
return TYPE_NAME;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy