2012-10-04 20:48:01 -03:00
|
|
|
/*
|
2020-11-06 21:35:54 -08: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.
|
|
|
|
*/
|
2012-10-04 20:48:01 -03:00
|
|
|
|
2012-02-21 14:22:43 -03:00
|
|
|
package com.wisemapping.rest.model;
|
|
|
|
|
|
|
|
|
2020-11-06 21:35:54 -08:00
|
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
2012-02-21 14:22:43 -03:00
|
|
|
import com.wisemapping.model.User;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.Set;
|
|
|
|
|
2014-01-16 20:09:22 -03:00
|
|
|
|
2012-02-21 14:22:43 -03:00
|
|
|
@XmlRootElement(name = "user")
|
|
|
|
@XmlAccessorType(XmlAccessType.PROPERTY)
|
2012-03-14 01:49:05 -03:00
|
|
|
@JsonAutoDetect(
|
|
|
|
fieldVisibility = JsonAutoDetect.Visibility.NONE,
|
|
|
|
getterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY,
|
|
|
|
isGetterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY)
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
2012-02-21 14:22:43 -03:00
|
|
|
public class RestUser {
|
|
|
|
|
|
|
|
private User user;
|
2012-03-12 10:48:54 -03:00
|
|
|
private String password;
|
2012-02-21 14:22:43 -03:00
|
|
|
|
|
|
|
public RestUser() {
|
|
|
|
this(new User());
|
|
|
|
}
|
|
|
|
|
|
|
|
public RestUser(@NotNull User user) {
|
|
|
|
this.user = user;
|
2015-08-29 02:14:49 -03:00
|
|
|
this.password = user.getPassword();
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
|
|
|
|
2020-11-06 21:35:54 -08:00
|
|
|
@JsonIgnore
|
2012-02-21 14:22:43 -03:00
|
|
|
public Calendar getCreationDate() {
|
|
|
|
return user.getCreationDate();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTags(Set<String> tags) {
|
|
|
|
user.setTags(tags);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Set<String> getTags() {
|
|
|
|
return user.getTags();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFirstname() {
|
|
|
|
return user.getFirstname();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFirstname(String firstname) {
|
|
|
|
user.setFirstname(firstname);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getLastname() {
|
|
|
|
return user.getLastname();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastname(String lastname) {
|
|
|
|
user.setLastname(lastname);
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getId() {
|
|
|
|
return user.getId();
|
|
|
|
}
|
|
|
|
|
2012-07-12 23:56:04 -03:00
|
|
|
public void setId(long id) {
|
2012-02-21 14:22:43 -03:00
|
|
|
user.setId(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEmail() {
|
|
|
|
return user.getEmail();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
|
user.setEmail(email);
|
|
|
|
}
|
|
|
|
|
2012-03-12 10:48:54 -03:00
|
|
|
public void setPassword(final String password) {
|
2012-02-21 14:22:43 -03:00
|
|
|
this.user.setPassword(password);
|
2012-03-12 10:48:54 -03:00
|
|
|
this.password = password;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPassword() {
|
|
|
|
return this.password;
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@JsonIgnore
|
2012-03-12 10:48:54 -03:00
|
|
|
public User getDelegated() {
|
2012-02-21 14:22:43 -03:00
|
|
|
return this.user;
|
|
|
|
}
|
2012-03-12 10:48:54 -03:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
if (!(o instanceof RestUser)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RestUser restUser = (RestUser) o;
|
2012-11-14 20:33:42 -03:00
|
|
|
return this.getDelegated().identityEquality(restUser.getDelegated());
|
2012-03-12 10:48:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return this.getDelegated().hashCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|