net.serenitybdd.screenplay.Ability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-journey Show documentation
Show all versions of serenity-journey Show documentation
Support for the User Journey pattern in Serenity
package net.serenitybdd.screenplay;
/**
* A marker interface to indicate that an actor can perform some ability.
*/
public interface Ability {
T asActor(Actor actor);
}