[New] Added realm name as protected property on ExecutionPolicy

This commit is contained in:
Robert von Burg 2020-02-26 09:27:17 +01:00
parent 937471c0cf
commit 8e1e0d1970
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ public abstract class ExecutionPolicy extends StrolchPolicy {
private Controller controller;
private boolean stopped;
protected String realm;
protected String actionType;
protected Locator actionLoc;
@ -56,6 +57,7 @@ public abstract class ExecutionPolicy extends StrolchPolicy {
public ExecutionPolicy(StrolchTransaction tx) {
super(tx);
this.tx = tx;
this.realm = tx.getRealmName();
}
public void setController(StrolchTransaction tx, Controller controller) {