@@ -43,7 +43,6 @@ LogoutRequestHandler logoutHandler
|
|||||||
TariffHandler tariffHandler,
|
TariffHandler tariffHandler,
|
||||||
TariffInfoHandler tariffInfoHandler,
|
TariffInfoHandler tariffInfoHandler,
|
||||||
ReferralHandler referralHandler,
|
ReferralHandler referralHandler,
|
||||||
ResetPasswordHandler resetPasswordHandler,
|
|
||||||
PaymentHandler paymentHandler,
|
PaymentHandler paymentHandler,
|
||||||
CostHandler costHandler,
|
CostHandler costHandler,
|
||||||
MonitoringHandler monitoringHandler,
|
MonitoringHandler monitoringHandler,
|
||||||
@@ -65,7 +64,6 @@ LogoutRequestHandler logoutHandler
|
|||||||
map.put(20007, imageFoundRequestHandler);
|
map.put(20007, imageFoundRequestHandler);
|
||||||
map.put(20008, authRequestHandler);
|
map.put(20008, authRequestHandler);
|
||||||
map.put(20009, verifyRegisterUser);
|
map.put(20009, verifyRegisterUser);
|
||||||
map.put(20010, resetPasswordHandler);
|
|
||||||
map.put(30000, companyHandler);
|
map.put(30000, companyHandler);
|
||||||
map.put(30001, tariffHandler);
|
map.put(30001, tariffHandler);
|
||||||
map.put(30002, tariffInfoHandler);
|
map.put(30002, tariffInfoHandler);
|
||||||
@@ -144,13 +142,15 @@ LogoutRequestHandler logoutHandler
|
|||||||
public Map<Integer, RequestHandler> authHandler(
|
public Map<Integer, RequestHandler> authHandler(
|
||||||
RegRequestHandler reg,
|
RegRequestHandler reg,
|
||||||
LoginRequestHandler login,
|
LoginRequestHandler login,
|
||||||
DaDataHandler daDataHandler
|
DaDataHandler daDataHandler,
|
||||||
|
ResetPasswordHandler resetPasswordHandler
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
Map<Integer, RequestHandler> map = new HashMap<>();
|
||||||
map.put(20001, login);
|
map.put(20001, login);
|
||||||
map.put(20002, reg);
|
map.put(20002, reg);
|
||||||
map.put(30004, daDataHandler);
|
map.put(30004, daDataHandler);
|
||||||
|
map.put(20010, resetPasswordHandler);
|
||||||
|
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user