132 lines
3.3 KiB
Java
Raw Normal View History

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
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;
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;
@XmlRootElement(name = "user")
@XmlAccessorType(XmlAccessType.PROPERTY)
@JsonAutoDetect(
fieldVisibility = JsonAutoDetect.Visibility.NONE,
getterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY,
isGetterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY)
@JsonIgnoreProperties(ignoreUnknown = true)
public class RestUser {
private User user;
2012-03-12 10:48:54 -03:00
private String password;
public RestUser() {
this(new User());
}
public RestUser(@NotNull User user) {
this.user = user;
this.password = user.getPassword();
}
2020-11-06 21:35:54 -08:00
@JsonIgnore
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) {
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) {
this.user.setPassword(password);
2012-03-12 10:48:54 -03:00
this.password = password;
}
public String getPassword() {
return this.password;
}
@JsonIgnore
2012-03-12 10:48:54 -03:00
public User getDelegated() {
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();
}
}