Package org.uned.agonzalo16.bitacora.domain

Examples of org.uned.agonzalo16.bitacora.domain.User


@ContextConfiguration(locations = "classpath:/META-INF/spring/applicationContext-test.xml")
public class AuthenticatedUserTest {

  @Test
  public void testAdmin() {
    User admin = new User();
    admin.setType(UserType.ADMIN.getType());

    AuthenticatedUser au = new AuthenticatedUser(admin);
    Collection<? extends GrantedAuthority> authorities = au.getAuthorities();

    assertEquals(authorities.size(), 1);
View Full Code Here


    assertEquals(authorities.iterator().next().getAuthority(), "ADMIN");
  }

  @Test
  public void testVisitor() {
    User admin = new User();
    admin.setType(UserType.VISITOR.getType());

    AuthenticatedUser au = new AuthenticatedUser(admin);
    Collection<? extends GrantedAuthority> authorities = au.getAuthorities();

    assertEquals(authorities.size(), 1);
View Full Code Here

    assertEquals(authorities.iterator().next().getAuthority(), "VISITOR");
  }

  @Test
  public void testContributor() {
    User admin = new User();
    admin.setType(UserType.CONTRIBUTOR.getType());

    AuthenticatedUser au = new AuthenticatedUser(admin);
    Collection<? extends GrantedAuthority> authorities = au.getAuthorities();

    assertEquals(authorities.size(), 1);
View Full Code Here

  @Override
  public int doStartTag() throws JspException {

    AuthenticatedUser principal = authenticationProvider.getCurrentUserDetails();
    User user = userDao.get(principal.getId());

    pageContext.setAttribute(var, messageDao.findNotReadByDestination(user));
    return SKIP_BODY;
  }
View Full Code Here

  private MessageDao messageDao;

  @RequestMapping(method = RequestMethod.GET, value = "/listReceive")
  public String listReceive(Model model, @ModelAttribute("userAttribute") AuthenticatedUser user) {

    User authUser = userDao.get(user.getId());

    model.addAttribute("receive", messageDao.findByDestination(authUser));

    return "message/listReceive";
  }
View Full Code Here

  }

  @RequestMapping(method = RequestMethod.GET, value = "/listSend")
  public String listSend(Model model, @ModelAttribute("userAttribute") AuthenticatedUser user) {

    User authUser = userDao.get(user.getId());

    model.addAttribute("msgs", messageDao.findByOrigin(authUser));

    return "message/listSend";
  }
View Full Code Here

    return "message/listSend";
  }

  @RequestMapping(method = RequestMethod.GET, value = "/show/{id}")
  public String show(@PathVariable("id") Long id, Model model, @ModelAttribute("userAttribute") AuthenticatedUser user) {
    User authUser = userDao.get(user.getId());
    Message msg = messageDao.get(id);
    model.addAttribute("message", msg);
    model.addAttribute("reply", !msg.getOrigin().equals(authUser));

    if (!msg.getRead() && msg.getDestination().equals(authUser)) {
View Full Code Here

    if (result.hasErrors()) {
      return "message/create";
    }

    // validar que el destino existe
    User destination = userDao.findByUsername(form.getDestination());
    if (destination == null) {
      result.rejectValue("destination", "invalidusername", "invalidusername");
      return "message/create";
    }
View Full Code Here

  @Override
  public int doStartTag() throws JspException {

    AuthenticatedUser principal = authenticationProvider.getCurrentUserDetails();
    User user = userDao.get(principal.getId());

    List<BlogContribution> blogs = blogContributionDao.findByUser(user);
    Collections.sort(blogs, new Comparator<BlogContribution>() {
      @Override
      public int compare(BlogContribution b1, BlogContribution b2) {
View Full Code Here

    AuthenticatedUser principal = authenticationProvider.getCurrentUserDetails();
    if (principal == null) {
      return SKIP_BODY;
    }

    User user = userDao.get(principal.getId());

    List<BlogContribution> blogs = blogContributionDao.findByUser(user);
    for (BlogContribution bc : blogs) {
      if (bc.getBlog().equals(blog)) {
        return EVAL_BODY_INCLUDE;
View Full Code Here

TOP

Related Classes of org.uned.agonzalo16.bitacora.domain.User

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.