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

net.shmin.auth.client.IClientManager Maven / Gradle / Ivy

There is a newer version: 2.3.1-RELEASE
Show newest version
package net.shmin.auth.client;

/**
 * Created by benjamin on 9/15/14.
 */
public interface IClientManager {
    /**
     * 注册一个Client
     *
     * @param client
     */
    void registClient(T client);

    /**
     * 检查clientId的正确性
     *
     * @param client
     * @return
     */
    boolean checkClientId(T client);

    /**
     * 收回clientId
     *
     * @param client
     */
    void revokeClientId(T client);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy