net.serenitybdd.screenplay.events.ActorPerformanceEvent 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.events;
public abstract class ActorPerformanceEvent {
private final String name;
public ActorPerformanceEvent(String name) {
this.name = name;
}
public String getName() {
return name;
}
}