com.mycomm.itool.AuthAPI.AuthNProtocol Maven / Gradle / Ivy
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.mycomm.itool.AuthAPI;
import com.mycomm.itool.AuthAPI.util.HTTPRequestType;
import java.util.Map;
/**
*
* @author jw362j
*/
public interface AuthNProtocol {
public Map LoadResponse(Map params,String action,HTTPRequestType type);
public boolean isUserTokenValid(String authnToken);// 令牌状态探测接口
}