corrected user_app signin service
This commit is contained in:
@@ -21,7 +21,7 @@ import java.util.Map;
|
||||
*/
|
||||
@Repository
|
||||
public class DecodeSessionRepositoryImpl implements IDecodeSessionRepository {
|
||||
private static final String KEY = "SESSION_KEY";
|
||||
private static final String KEY = "DECODE_SESSION_KEY";
|
||||
|
||||
private RedisTemplate<String, Object> redisTemplate;
|
||||
private HashOperations hashOperations;
|
||||
|
||||
@@ -23,7 +23,7 @@ import java.util.Map;
|
||||
*/
|
||||
@Repository
|
||||
public class IRBinaryRepositoryImpl implements IIRBinaryRepository {
|
||||
private static final String KEY = "BINARY_KEY";
|
||||
private static final String KEY = "IR_BINARY_KEY";
|
||||
|
||||
@Resource(name = "redisTemplate")
|
||||
private RedisTemplate<String, Object> redisTemplate;
|
||||
|
||||
@@ -22,7 +22,7 @@ import javax.annotation.Resource;
|
||||
*/
|
||||
@Repository
|
||||
public class UserAppRepositoryImpl implements IUserAppRepository {
|
||||
private static final String KEY = "BINARY_KEY";
|
||||
private static final String KEY = "USER_APP_KEY";
|
||||
|
||||
@Resource(name = "redisTemplate")
|
||||
private RedisTemplate<String, Object> redisTemplate;
|
||||
|
||||
@@ -47,7 +47,6 @@ public class SignInService extends AbstractBaseService {
|
||||
|
||||
@PostMapping("/app_login")
|
||||
public LoginResponse signIn(HttpServletRequest request, @RequestBody AppSignInRequest appSignInRequest) {
|
||||
LoggerUtil.getInstance().trace(TAG, "signIn API called : " + appSignInRequest.getAppKey());
|
||||
try {
|
||||
LoginResponse response = new LoginResponse();
|
||||
response.setStatus(new Status());
|
||||
|
||||
Reference in New Issue
Block a user