Files
wisemapping-open-source/wise-webapp/src/main/java/com/wisemapping/model/User.java

167 lines
4.2 KiB
Java
Raw Normal View History

/*
2015-04-12 00:15:12 -03:00
* Copyright [2015] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* 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 com.wisemapping.model;
import org.jetbrains.annotations.NotNull;
2012-07-12 23:56:04 -03:00
import org.jetbrains.annotations.Nullable;
2012-06-30 02:26:21 -03:00
import javax.persistence.*;
import java.io.Serializable;
2012-11-13 13:34:35 -03:00
import java.util.Calendar;
import java.util.HashSet;
import java.util.Set;
@Entity
@Table(name = "USER")
@PrimaryKeyJoinColumn(name="colaborator_id")
public class User
extends Collaborator
implements Serializable {
private String firstname;
private String lastname;
private String password;
private String locale;
@Column(name = "activation_code")
private long activationCode;
@Column(name = "activation_date")
private Calendar activationDate;
@Column(name = "allow_send_email")
private boolean allowSendEmail = false;
2013-03-17 23:17:55 -03:00
@Column(name="authentication_type")
private Character authenticationTypeCode = AuthenticationType.DATABASE.getCode();
2013-03-17 23:17:55 -03:00
@Column(name="authenticator_uri")
2013-03-17 23:17:55 -03:00
private String authenticatorUri;
@ElementCollection
@CollectionTable(name = "TAG", joinColumns = @JoinColumn(name = "user_id"))
@Column(name = "name")
private Set<String> tags = new HashSet<>();
public User() {
}
public void setTags(Set<String> tags) {
this.tags = tags;
}
public Set<String> getTags() {
return tags;
}
2012-06-13 23:04:29 -03:00
public String getFullName() {
return this.getFirstname() + " " + this.getLastname();
}
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 getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public boolean isActive() {
return activationDate != null;
}
public void setActivationCode(long code) {
this.activationCode = code;
}
public long getActivationCode() {
return activationCode;
}
public void setActivationDate(Calendar date) {
this.activationDate = date;
}
public Calendar getActivationDate() {
return activationDate;
}
public boolean isAllowSendEmail() {
return allowSendEmail;
}
public void setAllowSendEmail(boolean allowSendEmail) {
this.allowSendEmail = allowSendEmail;
}
2012-07-12 23:56:04 -03:00
@Nullable
2012-06-30 02:26:21 -03:00
public String getLocale() {
return locale;
}
2012-07-12 23:56:04 -03:00
public void setLocale(@Nullable String locale) {
2012-06-30 02:26:21 -03:00
this.locale = locale;
}
2013-03-10 19:07:52 -03:00
public char getAuthenticationTypeCode() {
return this.authenticationTypeCode;
}
public void setAuthenticationTypeCode(char code) {
this.authenticationTypeCode = code;
}
2013-03-17 23:17:55 -03:00
public AuthenticationType getAuthenticationType() {
return authenticationTypeCode!=null ? AuthenticationType.valueOf(authenticationTypeCode):AuthenticationType.DATABASE;
2013-03-10 19:07:52 -03:00
}
2013-03-17 23:17:55 -03:00
public void setAuthenticationType(@NotNull AuthenticationType authenticationType) {
this.authenticationTypeCode = authenticationType.getCode();
2013-03-10 19:07:52 -03:00
}
public boolean isDatabaseSchema(){
return this.getAuthenticationType() == AuthenticationType.DATABASE;
2013-03-17 23:17:55 -03:00
}
public String getAuthenticatorUri() {
return authenticatorUri;
}
public void setAuthenticatorUri(String authenticatorUri) {
this.authenticatorUri = authenticatorUri;
}
}