We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8141ad commit 4962e9eCopy full SHA for 4962e9e
services/src/test/java/io/meeds/gamification/mock/IdentityRegistryMock.java
@@ -18,16 +18,16 @@
18
import java.util.Map;
19
import java.util.concurrent.ConcurrentHashMap;
20
21
-import org.exoplatform.container.xml.InitParams;
+import org.exoplatform.services.cache.CacheService;
22
import org.exoplatform.services.security.Identity;
23
import org.exoplatform.services.security.IdentityRegistry;
24
25
public class IdentityRegistryMock extends IdentityRegistry {
26
27
private Map<String, Identity> identities = new ConcurrentHashMap<>();
28
29
- public IdentityRegistryMock(InitParams params) {
30
- super(params);
+ public IdentityRegistryMock(CacheService cacheService) {
+ super(cacheService);
31
}
32
33
@Override
0 commit comments