public interface LogonRequestValidator
Modifier and Type | Method and Description |
---|---|
boolean |
isRequireSysuserInfo()
System calls validateRequest with Request and DataSet sysuser if this method returns true and with Request only if returns false
|
java.lang.String |
validateRequest(HttpServletRequest request)
implement this method to allow customized validation of request attributes to further determine whether to authorize access to the application after initial authentication
return not allow access message html or empty string if pass validation.
|
java.lang.String |
validateRequest(HttpServletRequest request,
DataSet sysuser)
implement this method to allow customized validation of request attributes to further determine whether to authorize access to the application after initial authentication
return not allow access message html or empty string if pass validation.
|
boolean isRequireSysuserInfo()
java.lang.String validateRequest(HttpServletRequest request)
request
- java.lang.String validateRequest(HttpServletRequest request, DataSet sysuser)
request
- sysuser
- - will contain a single row of sysuser info or null if the sysuser does not exist.