Skip to content

Commit 74f6988

Browse files
committed
replaced UserDataManagementServiceWithIntegrityCheck to UserDataManagementService
1 parent 1df5244 commit 74f6988

3 files changed

Lines changed: 2 additions & 13 deletions

File tree

services/authenticationservice/src/main/java/net/anotheria/portalkit/services/authentication/AuthenticationService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import net.anotheria.anoprise.metafactory.Service;
44

55
import net.anotheria.portalkit.services.common.AccountId;
6-
import net.anotheria.portalkit.services.common.integrity.UserDataManagingServiceWithIntegrityCheck;
6+
import net.anotheria.portalkit.services.common.UserDataManagingService;
77
import org.distributeme.annotation.DistributeMe;
88
import org.distributeme.annotation.FailBy;
99
import org.distributeme.core.failing.RetryCallOnce;
@@ -16,7 +16,7 @@
1616
*/
1717
@DistributeMe
1818
@FailBy(strategyClass = RetryCallOnce.class)
19-
public interface AuthenticationService extends Service, UserDataManagingServiceWithIntegrityCheck {
19+
public interface AuthenticationService extends Service, UserDataManagingService {
2020

2121
/**
2222
* Sets new password for the user.

services/authenticationservice/src/main/java/net/anotheria/portalkit/services/authentication/AuthenticationServiceImpl.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -252,12 +252,6 @@ public String describeData() {
252252
return "authenticationService";
253253
}
254254

255-
@Override
256-
public IntegrityCheckResult performIntegrityCheck(IntegrityCheckHelper helper) throws Exception {
257-
//TODO. Please, implement me
258-
return null;
259-
}
260-
261255
@Override
262256
public void deleteTokensByType(AccountId accountId, int type) throws AuthenticationServiceException {
263257
Set<String> tokens = null;

services/authenticationservice/src/main/java/net/anotheria/portalkit/services/authentication/SecretKeyAuthenticationServiceImpl.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,6 @@ public String describeData() {
220220
return "secretKeyAuthenticationService";
221221
}
222222

223-
@Override
224-
public IntegrityCheckResult performIntegrityCheck(IntegrityCheckHelper helper) throws Exception {
225-
return null;
226-
}
227-
228223
@Override
229224
public void deleteTokensByType(AccountId accountId, int type) throws AuthenticationServiceException {
230225
Set<String> tokens = null;

0 commit comments

Comments
 (0)