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

io.rocketbase.commons.service.ValidationUserLookupService Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.service;

import io.rocketbase.commons.model.AppUserEntity;
import io.rocketbase.commons.model.AppUserToken;

import java.util.Optional;

public interface ValidationUserLookupService {

    AppUserToken getByUsername(String username);

    Optional findByEmail(String email);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy