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

io.lsn.spring.auth.entity.User Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.lsn.spring.auth.entity;

import java.util.List;

/**
 * @author Patryk Szlagowski 
 */
public interface User {

    ApiToken getApiToken();
    void setApiToken(ApiToken token);
    List getRoles();
    String getUsername();
    String getAuthToken();
    String getPassword();
    String getPasswordSalt();
    String getAuthenticationStrategy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy