website.automate.waml.io.model.main.action.WaitAction 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 com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import website.automate.waml.io.model.main.criteria.WaitCriteria;
public class WaitAction extends ConditionalAction {
static final String TYPE_NAME = "wait";
@JsonInclude(Include.ALWAYS)
private WaitCriteria wait;
public WaitCriteria getWait() {
return wait;
}
public void setWait(WaitCriteria wait) {
this.wait = wait;
}
@Override
public String getTypeName() {
return TYPE_NAME;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy