All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.icodegarden.nursery.springboot.security.User Maven / Gradle / Ivy

package io.github.icodegarden.nursery.springboot.security;

import java.util.Collection;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public interface User {

	String getUserId();
	
	String getUsername();
	
	String getPassword();
	
	Collection getAuthorities();

	boolean isAccountNonExpired();

	boolean isAccountNonLocked();

	boolean isCredentialsNonExpired();

	boolean isEnabled();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy