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

io.lsn.spring.auth.service.AbstractUserService Maven / Gradle / Ivy

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

import io.lsn.spring.auth.entity.User;

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

    User findByApiToken(String token) throws Exception;
    User findByUsername(String username) throws Exception;
    void terminateApiToken(User user) throws Exception;
    void assignNewApiToken(User user) throws Exception;
    void updateApiToken(User user) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy