package com.vci.server.framework.interfac; public interface TokenLogonInterface { /** * 验证Token合法性,并返回用户帐号 * @param token * @return * @throws Throwable */ String verifyToken(String token) throws Throwable; }