From cc007e5339f7ffc35cdd9b94ce3b712596a1494e Mon Sep 17 00:00:00 2001
From: ulrich
Date: Tue, 03 Dec 2024 16:20:46 +0000
Subject: [PATCH] Scan nach Actor-Klassen aus der Initialisierung der Kontexte herausgeloest und zu 'runInstance' verlagert. Hilfstabelle fuer Actors waehrend der Initialisierung eingefuehrt.

---
 src/de/uhilger/neon/TempActor.java |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/src/de/uhilger/neon/TempActor.java b/src/de/uhilger/neon/TempActor.java
new file mode 100644
index 0000000..6f78624
--- /dev/null
+++ b/src/de/uhilger/neon/TempActor.java
@@ -0,0 +1,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;
+  }
+  
+  
+  
+}

--
Gitblit v1.9.3