package de.uhilger.neon;
|
|
import de.uhilger.neon.Action.Type;
|
|
/**
|
*
|
* @author Ulrich Hilger
|
* @version 0.1, 03.12.2024
|
*/
|
public class TempActor {
|
|
private String contextName;
|
private Type httpMethod;
|
private String route;
|
private String actorClassName;
|
|
public String getContextName() {
|
return contextName;
|
}
|
|
public void setContextName(String contextName) {
|
this.contextName = contextName;
|
}
|
|
public Type getHttpMethod() {
|
return httpMethod;
|
}
|
|
public void setHttpMethod(Type httpMethod) {
|
this.httpMethod = httpMethod;
|
}
|
|
public String getRoute() {
|
return route;
|
}
|
|
public void setRoute(String route) {
|
this.route = route;
|
}
|
|
public String getActorClassName() {
|
return actorClassName;
|
}
|
|
public void setActorClassName(String actorClassName) {
|
this.actorClassName = actorClassName;
|
}
|
|
|
|
}
|