Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[freeboxos] Distinguish thing action scope across the binding #17786

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = ActivePlayerActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-activeplayer")
@NonNullByDefault
public class ActivePlayerActions extends PlayerActions {
private final Logger logger = LoggerFactory.getLogger(ActivePlayerActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = CallActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-call")
@NonNullByDefault
public class CallActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(CallActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = FreeplugActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-freeplug")
@NonNullByDefault
public class FreeplugActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(FreeplugActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = HostActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-host")
@NonNullByDefault
public class HostActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(HostActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = PlayerActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-player")
@NonNullByDefault
public class PlayerActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(PlayerActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = RepeaterActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-repeater")
@NonNullByDefault
public class RepeaterActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(RepeaterActions.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Gaël L'hopital - Initial contribution
*/
@Component(scope = ServiceScope.PROTOTYPE, service = ServerActions.class)
@ThingActionsScope(name = "freeboxos")
@ThingActionsScope(name = "freeboxos-server")
@NonNullByDefault
public class ServerActions implements ThingActions {
private final Logger logger = LoggerFactory.getLogger(ServerActions.class);
Expand Down