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

io.robe.auth.data.store.UserStore Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.auth.data.store;

import com.google.common.base.Optional;
import io.robe.auth.data.entry.UserEntry;

public interface UserStore {
    Optional findByUsername(String username);

    Optional changePassword(String username ,String newPassword);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy