Package org.jtalks.jcommune.web.dto

Examples of org.jtalks.jcommune.web.dto.UserSecurityDto


    private UserSecurityDto userSecurityDto;

  @BeforeMethod
  public void init() throws NotFoundException {
    initMocks(this);
        userSecurityDto = new UserSecurityDto();
    when(userService.getCurrentUser()).thenReturn(
                new JCUser(PROFILE_OWNER_NAME, "email", userCurrentPassword));
        userSecurityDto.setUserId(1L);
    validator = new ChangedPasswordValidator(userService, encryptionService);
View Full Code Here

TOP

Related Classes of org.jtalks.jcommune.web.dto.UserSecurityDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.