/** * Copyright 2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * 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.bricket.plugin.user.domain; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import org.bricket.plugin.genericdomain.domain.DomainObject; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; /** * @author Henning Teek */ @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @Entity @Table(name = "Domain_User", uniqueConstraints = @UniqueConstraint(columnNames = "email")) public class User extends DomainObject { @Column(nullable = false) private String email; private String password; private String firstname; private String lastname; private boolean enabled; private String activationKey; public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getFirstname() { return firstname; } public void setFirstname(String firstname) { this.firstname = firstname; } public String getLastname() { return lastname; } public void setLastname(String lastname) { this.lastname = lastname; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public boolean isEnabled() { return enabled; } public void setActivationKey(String activationKey) { this.activationKey = activationKey; } public String getActivationKey() { return this.activationKey; } @Override public String toString() { return String.format("User [id=%s, email=%s, firstname=%s, lastname=%s, enabled=%s, activationKey=%s]", getId(), email, firstname, lastname, enabled, activationKey); } }