org.apereo.cas.web.TokenRequestExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-server-support-token-webflow Show documentation
Show all versions of cas-server-support-token-webflow Show documentation
cas-server-support-token-webflow
package org.apereo.cas.web;
import javax.servlet.http.HttpServletRequest;
/**
* This is {@link TokenRequestExtractor}.
*
* @author Misagh Moayyed
* @since 5.2.0
*/
@FunctionalInterface
public interface TokenRequestExtractor {
/**
* Extract string.
*
* @param request the request
* @return the string
*/
String extract(HttpServletRequest request);
}