SecurityUser.java
Home
/
application /
src /
main /
java /
org /
thingsboard /
server /
service /
security /
model /
SecurityUser.java
/**
* Copyright © 2016 The Thingsboard 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.thingsboard.server.service.security.model;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.thingsboard.server.common.data.User;
import org.thingsboard.server.common.data.id.UserId;
import java.util.Arrays;
import java.util.Collection;
import java.util.stream.Collectors;
public class SecurityUser extends User {
private static final long serialVersionUID = -797397440703066079L;
private Collection<GrantedAuthority> authorities;
private boolean enabled;
public SecurityUser() {
super();
}
public SecurityUser(UserId id) {
super(id);
}
public SecurityUser(User user, boolean enabled) {
super(user);
this.enabled = enabled;
}
public Collection<? extends GrantedAuthority> getAuthorities() {
if (authorities == null) {
authorities = Arrays.asList(SecurityUser.this.getAuthority()).stream()
.map(authority -> new SimpleGrantedAuthority(authority.name()))
.collect(Collectors.toList());
}
return authorities;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
}