Ultrakompakter HTTP Server
ulrich
2024-12-05 7189ff3d683f97870fc11ec4e14de3f23abe3c4b
commit | author | age
7189ff 1 package de.uhilger.neon.entity;
cc007e 2
U 3 import de.uhilger.neon.Action.Type;
4
5 /**
6  *
7  * @author Ulrich Hilger
8  * @version 0.1, 03.12.2024
9  */
7189ff 10 public class ActorDescriptor {
cc007e 11
U 12   private String contextName;
13   private Type httpMethod;
14   private String route;
15   private String actorClassName;
16
17   public String getContextName() {
18     return contextName;
19   }
20
21   public void setContextName(String contextName) {
22     this.contextName = contextName;
23   }
24
25   public Type getHttpMethod() {
26     return httpMethod;
27   }
28
29   public void setHttpMethod(Type httpMethod) {
30     this.httpMethod = httpMethod;
31   }
32
33   public String getRoute() {
34     return route;
35   }
36
37   public void setRoute(String route) {
38     this.route = route;
39   }
40
41   public String getActorClassName() {
42     return actorClassName;
43   }
44
45   public void setActorClassName(String actorClassName) {
46     this.actorClassName = actorClassName;
47   }
48   
49   
50   
51 }