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

com.minlessika.membership.integration.Membership Maven / Gradle / Ivy

Go to download

It's a library to help developers to integration membership services to another project.

There is a newer version: 0.3.1
Show newest version
package com.minlessika.membership.integration;

import java.util.UUID;

public interface Membership {

    Profile profile(UUID id, String module);

    User user(UUID id);

    User userByEmail(String email);

    Iterable profiles(String module);

    int compareProfile(Profile source, Profile target);

    String generateToken(User user);

    boolean validateToken(String token);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy