X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fimpl%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fusermgt%2FUser.java;h=8bccfabad6ca0435a30e1ae5b40ba096d53c1b8c;hb=e1d9bd9ae47021814e7d99cb82104b3c7f6cb968;hp=224435a14a66726682eb861122ed3d223e238983;hpb=a11c373e6ef35e7fe540c95a94903ed848800612;p=utils diff --git a/security/impl/src/main/java/org/wamblee/usermgt/User.java b/security/impl/src/main/java/org/wamblee/usermgt/User.java index 224435a1..8bccfaba 100644 --- a/security/impl/src/main/java/org/wamblee/usermgt/User.java +++ b/security/impl/src/main/java/org/wamblee/usermgt/User.java @@ -12,11 +12,10 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.usermgt; -import org.wamblee.persistence.AbstractPersistent; - +import org.wamblee.security.AbstractPersistent; import org.wamblee.security.encryption.MessageDigester; import org.wamblee.usermgt.UserMgtException.Reason; @@ -26,13 +25,32 @@ import java.io.Serializable; import java.util.Set; import java.util.TreeSet; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.ManyToMany; +import javax.persistence.Table; +import javax.persistence.Transient; +import javax.persistence.Version; + /** * Represents a user. The methods for managing the groups of the user have * package scope. Managing the groups of the user should be done through the * {@link org.wamblee.usermgt.UserAdministration} interface. */ -public class User extends AbstractPersistent implements Serializable, +@Entity +@Table(name = "SEC_USER") +public class User implements Serializable, Comparable { + + @Id + @GeneratedValue(strategy = GenerationType.AUTO) + private Long primaryKey; + + @Version + private int version; + /** * User name. */ @@ -46,16 +64,19 @@ public class User extends AbstractPersistent implements Serializable, /** * Groups the user belongs to. */ + @ManyToMany private Set groups; /** * Password validator. */ + @Transient private NameValidator passwordValidator; /** * Password encoder. */ + @Transient private MessageDigester passwordEncoder; /** @@ -86,7 +107,6 @@ public class User extends AbstractPersistent implements Serializable, * */ public User(User aUser) { - super(aUser); name = aUser.name; password = aUser.password; groups = new TreeSet(); @@ -365,4 +385,8 @@ public class User extends AbstractPersistent implements Serializable, public int compareTo(Object aUser) { return name.compareTo(((User) aUser).name); } + + public Long getPrimaryKey() { + return primaryKey; + } }