org.jboss.seam.annotations.security.management
Annotation Type UserPassword


@Target(value={METHOD,FIELD})
@Documented
@Retention(value=RUNTIME)
@Inherited
public @interface UserPassword

Flags an entity field or method as representing the password for a user

Author:
Shane Bryzak

Optional Element Summary
 String hash
          The hash algorithm, only used if there is no @PasswordSalt property specified
 int iterations
          Number of iterations for generating the password hash
 

hash

public abstract String hash
The hash algorithm, only used if there is no @PasswordSalt property specified

Default:
""

iterations

public abstract int iterations
Number of iterations for generating the password hash

Default:
1000