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

com.infilos.auth.profile.ProfileContext Maven / Gradle / Ivy

The newest version!
package com.infilos.auth.profile;

import com.infilos.auth.core.TokenProfile;

public interface ProfileContext {
    /**
     * Clear the current TokenProfile.
     */
    void clearProfile();

    /**
     * Obtain the current TokenProfile.
     */
    TokenProfile getProfile();

    /**
     * Set the current TokenProfile.
     */
    void setProfile(TokenProfile profile);   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy