Ultrakompakter HTTP Server
ulrich
2024-12-03 cc007e5339f7ffc35cdd9b94ce3b712596a1494e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
  }
  
  
  
}