Skip to content

Commit

Permalink
:test: fix junit
Browse files Browse the repository at this point in the history
Signed-off-by: riccardomodanese <riccardo.modanese@eurotech.com>
  • Loading branch information
riccardomodanese committed Feb 19, 2025
1 parent ebdb1b4 commit 06e6bd0
Showing 1 changed file with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import java.util.Collections;
import javax.inject.Named;
import javax.inject.Singleton;

import org.apache.activemq.artemis.spi.core.security.jaas.UserPrincipal;
import org.eclipse.kapua.commons.core.AbstractKapuaModule;
Expand All @@ -40,4 +41,47 @@ String metricModuleName() {
String eventsModuleName() {
return "test";
}

@Provides
@Singleton
@Named("accountEvtSubscriptionGroupId")
String accountEvtSubscriptionGroupId() {
return "shiro-test";
}

@Provides
@Singleton
@Named("authenticationEvtSubscriptionGroupId")
String authenticationEvtSubscriptionGroupId() {
return "shiro-test";
}

@Provides
@Singleton
@Named("authorizationEvtSubscriptionGroupId")
String authorizationEvtSubscriptionGroupId() {
return "shiro-test";
}

@Provides
@Singleton
@Named("deviceConnectionEvtSubscriptionGroupId")
String deviceConnectionEvtSubscriptionGroupId() {
return "shiro-test";
}

@Provides
@Singleton
@Named("deviceRegistryEvtSubscriptionGroupId")
String deviceRegistryEvtSubscriptionGroupId() {
return "shiro-test";
}

@Provides
@Singleton
@Named("userEvtSubscriptionGroupId")
String userEvtSubscriptionGroupId() {
return "shiro-test";
}

}

0 comments on commit 06e6bd0

Please sign in to comment.