-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cb5c65
commit 3ed80ee
Showing
7 changed files
with
103 additions
and
56 deletions.
There are no files selected for viewing
25 changes: 22 additions & 3 deletions
25
src/main/java/org/openhab/automation/jrule/internal/engine/JRuleChannelExecutionContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 21 additions & 3 deletions
24
src/main/java/org/openhab/automation/jrule/internal/engine/JRuleTimedExecutionContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
/** | ||
* Copyright (c) 2010-2022 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.automation.jrule.internal.engine; | ||
|
||
import java.lang.reflect.Method; | ||
|
||
import org.openhab.automation.jrule.rules.JRule; | ||
import org.openhab.automation.jrule.rules.JRulePrecondition; | ||
|
||
import java.lang.reflect.Method; | ||
|
||
/** | ||
* The {@link JRuleTimedExecutionContext} | ||
* | ||
* @author Robert Delbrück - Initial contribution | ||
*/ | ||
public class JRuleTimedExecutionContext extends JRuleExecutionContext { | ||
public JRuleTimedExecutionContext(JRule jRule, String logName, String[] loggingTags, Method method, String ruleName, boolean jRuleEventPresent, JRulePrecondition[] preconditions) { | ||
public JRuleTimedExecutionContext(JRule jRule, String logName, String[] loggingTags, Method method, String ruleName, | ||
boolean jRuleEventPresent, JRulePrecondition[] preconditions) { | ||
super(jRule, logName, loggingTags, ruleName, method, jRuleEventPresent, preconditions); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters