UsernamePasswordAuthenticationToken systemAuthentication;
final List<GrantedAuthority> AUTHORITIES = new ArrayList<GrantedAuthority>();
AUTHORITIES.add(payer.getRole());
systemAuthentication = new CostsTrackingSystemAuthToken(payer,
authentication.getCredentials(), AUTHORITIES);
return systemAuthentication;
}