changed audio action to implement ESH interface (#58)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
pull/59/head
Kai Kreuzer 2016-08-29 23:45:32 +02:00 committed by GitHub
parent 6dfda5c90e
commit a819b25ff5
2 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@
-->
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" immediate="true" name="org.openhab.action.audio">
<implementation class="org.openhab.io.multimedia.actions.AudioActionService"/>
<service>
<provide interface="org.openhab.core.scriptengine.action.ActionService"/>
</service>
<reference bind="setVoiceManager" cardinality="1..1" interface="org.eclipse.smarthome.core.voice.VoiceManager" name="VoiceManager" policy="static" unbind="unsetVoiceManager"/>
<service>
<provide interface="org.eclipse.smarthome.model.script.engine.action.ActionService"/>
</service>
</scr:component>

View File

@ -9,7 +9,7 @@
package org.openhab.io.multimedia.actions;
import org.eclipse.smarthome.core.voice.VoiceManager;
import org.openhab.core.scriptengine.action.ActionService;
import org.eclipse.smarthome.model.script.engine.action.ActionService;
public class AudioActionService implements ActionService {