Implementation of DB read and store procedures for Actions and triggers(not tested). issue 6
This commit is contained in:
parent
44d5fa0227
commit
4b24615f4f
11 changed files with 249 additions and 22 deletions
|
|
@ -75,7 +75,7 @@ public class TriggerManagerTest {
|
|||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
private static class TestTrigger implements HalTrigger {
|
||||
private static class TestTrigger extends HalTrigger {
|
||||
boolean evaluation;
|
||||
TestTrigger(boolean b){ evaluation = b; }
|
||||
@Override
|
||||
|
|
@ -86,7 +86,7 @@ public class TriggerManagerTest {
|
|||
}
|
||||
|
||||
|
||||
private class TestAction implements HalAction {
|
||||
private class TestAction extends HalAction {
|
||||
int nrOfExecutions;
|
||||
@Override
|
||||
public void execute() { nrOfExecutions++; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue