01: package com.sabre.security.jndi;
02:
03: import java.util.List;
04:
05: public class User {
06: String username = null;
07: String dn = null;
08: String password = null;
09: List roles = null;
10:
11: public User(String username, String dn, String password, List roles) {
12: this.username = username;
13: this.dn = dn;
14: this.password = password;
15: this.roles = roles;
16: }
17:
18: }
|