Examples of Affiliate


Examples of com.jpoweredcart.common.entity.sale.Affiliate

 
  @Override
  public UserDetails loadUserByUsername(String email)
      throws UsernameNotFoundException {
    try{
      Affiliate affiliate = userService.getAffiliateByEmail(email);
      if(affiliate==null) throw new EmptyResultDataAccessException(1);
     
      CartUserDetails userDetails = new CartUserDetails();
      userDetails.userId = affiliate.getId();
      userDetails.salt = affiliate.getSalt();
      userDetails.password = affiliate.getPassword();
      userDetails.username = affiliate.getEmail();
      userDetails.enabled = affiliate.getStatus()==1;
     
      logger.debug("Found user email={}, enabled={}", email, userDetails.enabled);
     
      return userDetails;
     
View Full Code Here

Examples of com.jpoweredcart.common.entity.sale.Affiliate

    return getJdbcOperations().query(query.getSql(),
        query.getParameters(), new AffiliateRowMapper(){
          @Override
          public Affiliate mapRow(ResultSet rs, int rowNum)
              throws SQLException {
            Affiliate aff = super.mapRow(rs, rowNum);
            aff.setBalance(rs.getBigDecimal("balance"));
            return aff;
          }
    });
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.