*/
public AuthorizedTicket authTicket(String url,String licensor,String token
,AuthorizedTicket.Scope scope,String sessinid
,String grantor,Long maxCount,Calendar validTime){
if( StringUtils.isEmpty(url) )
throw new ApplicationException("授权URL为空!");
if( StringUtils.isEmpty(licensor) || StringUtils.isEmpty(token)
|| StringUtils.isEmpty(grantor) || StringUtils.isEmpty(sessinid) )
throw new ApplicationException("授权参数错误!");
if( scope == null )
scope = AuthorizedTicket.Scope.ONCE;
AuthorizedTicket ticket = new AuthorizedTicket();