use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.
the class SendEmailClickListener method buttonClick.
@Override
public void buttonClick(final ClickEvent event) {
final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(sendEmailRequest);
if (ServiceResult.SUCCESS == response.getResult()) {
LOGGER.info(LOG_MSG_SEND_EMAIL, sendEmailRequest.getEmail());
Notification.show(EMAIL_SENT);
} else {
Notification.show(SEND_EMAIL_FAILEDFAILED, response.getErrorMessage(), Notification.Type.WARNING_MESSAGE);
LOGGER.info(SEND_EMAIL_FAILURE, sendEmailRequest.getEmail());
}
}
use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.
the class LogoutClickListener method buttonClick.
@Override
public void buttonClick(final ClickEvent event) {
final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(logoutRequest);
if (ServiceResult.SUCCESS == response.getResult()) {
UI.getCurrent().getNavigator().navigateTo(CommonsViews.MAIN_VIEW_NAME);
UI.getCurrent().getSession().close();
VaadinService.getCurrentRequest().getWrappedSession().invalidate();
} else {
Notification.show(LOGOUT_FAILED, ERROR_MESSAGE, Notification.Type.WARNING_MESSAGE);
LOGGER.info(LOG_MSG_LOGOUT_FAILURE, logoutRequest.getSessionId());
}
}
use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.
the class ManageUserAccountClickListener method buttonClick.
@Override
public void buttonClick(final ClickEvent event) {
final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(manageUserAccountRequest);
if (ServiceResult.SUCCESS == response.getResult()) {
LOGGER.info(LOG_MSG, manageUserAccountRequest.getUserAcountId());
Notification.show(OPERATION_COMPLETED);
} else {
Notification.show(OPERATION_FAILED, response.getErrorMessage(), Notification.Type.WARNING_MESSAGE);
LOGGER.info(OPERATION_FAILURE, manageUserAccountRequest.getUserAcountId());
}
}
use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.
the class ApplicationManagerImpl method asyncService.
@Async("SecureTaskExecutor")
@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
@Override
public Future<ServiceResponse> asyncService(final ServiceRequest serviceRequest) {
final BusinessService businessService = serviceRequestBusinessServiceMap.get(serviceRequest.getClass());
ServiceResponse serviceResponse = null;
if (businessService != null) {
serviceResponse = businessService.processService(serviceRequest);
}
return new AsyncResult<>(serviceResponse);
}
use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.
the class SetGoogleAuthenticatorCredentialServiceITest method servicesetGoogleAuthenticatorCredentialRequestSuccessTest.
/**
* Serviceset google authenticator credential request success test.
*
* @throws Exception
* the exception
*/
@Test
@PerfTest(threads = 2, duration = 4000, warmUp = 1500)
@Required(max = 3000, average = 2500, percentile95 = 2700, throughput = 1)
public void servicesetGoogleAuthenticatorCredentialRequestSuccessTest() throws Exception {
final CreateApplicationSessionRequest createApplicationSesstion = createApplicationSesstionWithRoleAnonymous();
final RegisterUserRequest serviceRequest = new RegisterUserRequest();
serviceRequest.setCountry("Sweden");
serviceRequest.setUsername(UUID.randomUUID().toString());
serviceRequest.setEmail(serviceRequest.getUsername() + "@email.com");
serviceRequest.setUserpassword("Userpassword1!");
serviceRequest.setUserType(UserType.PRIVATE);
serviceRequest.setSessionId(createApplicationSesstion.getSessionId());
final RegisterUserResponse response = (RegisterUserResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, response);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, response.getResult());
final DataContainer<UserAccount, Long> dataContainer = applicationManager.getDataContainer(UserAccount.class);
final List<UserAccount> allBy = dataContainer.getAllBy(UserAccount_.username, serviceRequest.getUsername());
assertEquals(1, allBy.size());
final LoginRequest loginRequest = new LoginRequest();
loginRequest.setEmail(serviceRequest.getEmail());
loginRequest.setSessionId(serviceRequest.getSessionId());
loginRequest.setUserpassword(serviceRequest.getUserpassword());
final LoginResponse loginResponse = (LoginResponse) applicationManager.service(loginRequest);
assertNotNull(EXPECT_A_RESULT, loginResponse);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, loginResponse.getResult());
final SetGoogleAuthenticatorCredentialRequest setGoogleAuthenticatorCredentialRequest = new SetGoogleAuthenticatorCredentialRequest();
setGoogleAuthenticatorCredentialRequest.setSessionId(serviceRequest.getSessionId());
final ServiceResponse setGoogleAuthenticatorCredentialResponse = applicationManager.service(setGoogleAuthenticatorCredentialRequest);
assertNotNull(EXPECT_A_RESULT, setGoogleAuthenticatorCredentialResponse);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, setGoogleAuthenticatorCredentialResponse.getResult());
final LogoutRequest logoutRequest = new LogoutRequest();
logoutRequest.setSessionId(serviceRequest.getSessionId());
final ServiceResponse logoutResponse = applicationManager.service(logoutRequest);
assertNotNull(EXPECT_A_RESULT, logoutResponse);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, logoutResponse.getResult());
}
Aggregations