Fix config.core package references (#1611)
Fixes #1588 Signed-off-by: Wouter Born <github@maindrain.net>pull/1614/head
parent
75f8f357f6
commit
dcc7ab3513
|
@ -87,7 +87,7 @@ automationManager.addRule(sRule)
|
|||
```groovy
|
||||
import org.openhab.core.automation.*
|
||||
import org.openhab.core.automation.module.script.rulesupport.shared.simple.*
|
||||
import org.openhab.config.core.Configuration
|
||||
import org.openhab.core.config.core.Configuration
|
||||
|
||||
scriptExtension.importPreset("RuleSupport")
|
||||
scriptExtension.importPreset("RuleSimple")
|
||||
|
@ -242,7 +242,7 @@ See language-specific documentation for examples.
|
|||
| Variable | Description |
|
||||
|----------|-------------|
|
||||
| ActionType | `org.openhab.core.automation.type.ActionType` |
|
||||
| ConfigDescriptionParameter | `org.openhab.config.core.ConfigDescriptionParameter` |
|
||||
| ConfigDescriptionParameter | `org.openhab.core.config.core.ConfigDescriptionParameter` |
|
||||
| ModuleType | `org.openhab.core.automation.type.ModuleType` |
|
||||
| SimpleActionHandler | `org.openhab.core.automation.module.script.rulesupport.shared.simple.SimpleActionHandler` |
|
||||
| SimpleConditionHandler | `org.openhab.core.automation.module.script.rulesupport.shared.simple.SimpleConditionHandler` |
|
||||
|
@ -265,7 +265,7 @@ scriptExtension.importPreset("RuleSupport")
|
|||
| ActionBuilder | `org.openhab.core.automation.ActionBuilder` |
|
||||
| Condition | `org.openhab.core.automation.Condition` |
|
||||
| ConditionBuilder | `org.openhab.core.automation.ConditionBuilder` |
|
||||
| Configuration | `org.openhab.config.core.Configuration` |
|
||||
| Configuration | `org.openhab.core.config.core.Configuration` |
|
||||
| ModuleBuilder | `org.openhab.core.automation.ModuleBuilder` |
|
||||
| Rule | `org.openhab.core.automation.Rule` (use `SimpleRule` for defining rules) |
|
||||
| Trigger | `org.openhab.core.automation.Trigger` |
|
||||
|
|
Loading…
Reference in New Issue