Remove SmartHome leftovers (#9283)

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2020-12-08 18:03:49 +01:00
committed by GitHub
parent af4371844d
commit d2e5c3e7dd
64 changed files with 132 additions and 139 deletions

View File

@@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory;
* @author Jan N. Klug - added command whitelist service
*/
@NonNullByDefault
@Component(property = { "smarthome.transform=EXEC" })
@Component(property = { "openhab.transform=EXEC" })
public class ExecTransformationService implements TransformationService {
private final Logger logger = LoggerFactory.getLogger(ExecTransformationService.class);
private final ExecTransformationWhitelistWatchService execTransformationWhitelistWatchService;

View File

@@ -60,7 +60,7 @@ public class ExecTransformationProfileFactory implements ProfileFactory, Profile
return Arrays.asList(ExecTransformationProfile.PROFILE_TYPE_UID);
}
@Reference(target = "(smarthome.transform=EXEC)")
@Reference(target = "(openhab.transform=EXEC)")
public void addTransformationService(TransformationService service) {
this.service = service;
}