本文整理汇总了Java中org.jasig.cas.support.oauth.OAuthConstants.CONFIRM_VIEW属性的典型用法代码示例。如果您正苦于以下问题:Java OAuthConstants.CONFIRM_VIEW属性的具体用法?Java OAuthConstants.CONFIRM_VIEW怎么用?Java OAuthConstants.CONFIRM_VIEW使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.jasig.cas.support.oauth.OAuthConstants
的用法示例。
在下文中一共展示了OAuthConstants.CONFIRM_VIEW属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleRequestInternal
@Override
protected ModelAndView handleRequestInternal(final HttpServletRequest request, final HttpServletResponse response)
throws Exception {
// get CAS ticket
final String ticket = request.getParameter(OAuthConstants.TICKET);
logger.debug("{} : {}", OAuthConstants.TICKET, ticket);
// retrieve callback url from session
final HttpSession session = request.getSession();
String callbackUrl = (String) session.getAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
session.removeAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
if (StringUtils.isBlank(callbackUrl)) {
logger.error("{} is missing from the session and can not be retrieved.", OAuthConstants.OAUTH20_CALLBACKURL);
return new ModelAndView(OAuthConstants.ERROR_VIEW);
}
// and state
final String state = (String) session.getAttribute(OAuthConstants.OAUTH20_STATE);
logger.debug("{} : {}", OAuthConstants.OAUTH20_STATE, state);
session.removeAttribute(OAuthConstants.OAUTH20_STATE);
// return callback url with code & state
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.CODE, ticket);
if (state != null) {
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.STATE, state);
}
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
final Map<String, Object> model = new HashMap<String, Object>();
model.put("callbackUrl", callbackUrl);
// retrieve service name from session
final String serviceName = (String) session.getAttribute(OAuthConstants.OAUTH20_SERVICE_NAME);
logger.debug("serviceName : {}", serviceName);
model.put("serviceName", serviceName);
return new ModelAndView(OAuthConstants.CONFIRM_VIEW, model);
}
示例2: internalHandleRequest
@Override
protected ModelAndView internalHandleRequest(final String method, final HttpServletRequest request,
final HttpServletResponse response) throws Exception {
// get CAS ticket
final String ticket = request.getParameter(OAuthConstants.TICKET);
logger.debug("{} : {}", OAuthConstants.TICKET, ticket);
// retrieve callback url from session
final HttpSession session = request.getSession();
String callbackUrl = (String) session.getAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
session.removeAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
if (StringUtils.isBlank(callbackUrl)) {
logger.error("{} is missing from the session and can not be retrieved.", OAuthConstants.OAUTH20_CALLBACKURL);
return new ModelAndView(OAuthConstants.ERROR_VIEW);
}
// and state
final String state = (String) session.getAttribute(OAuthConstants.OAUTH20_STATE);
logger.debug("{} : {}", OAuthConstants.OAUTH20_STATE, state);
session.removeAttribute(OAuthConstants.OAUTH20_STATE);
// return callback url with code & state
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.CODE, ticket);
if (state != null) {
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.STATE, state);
}
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
final Map<String, Object> model = new HashMap<>();
model.put("callbackUrl", callbackUrl);
final Boolean bypassApprovalPrompt = (Boolean) session.getAttribute(OAuthConstants.BYPASS_APPROVAL_PROMPT);
logger.debug("bypassApprovalPrompt : {}", bypassApprovalPrompt);
session.removeAttribute(OAuthConstants.BYPASS_APPROVAL_PROMPT);
// Clients that auto-approve do not need authorization.
if (bypassApprovalPrompt != null && bypassApprovalPrompt) {
return OAuthUtils.redirectTo(callbackUrl);
}
// retrieve service name from session
final String serviceName = (String) session.getAttribute(OAuthConstants.OAUTH20_SERVICE_NAME);
logger.debug("serviceName : {}", serviceName);
model.put("serviceName", serviceName);
return new ModelAndView(OAuthConstants.CONFIRM_VIEW, model);
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:49,代码来源:OAuth20CallbackAuthorizeController.java
示例3: handleRequestInternal
@Override
protected ModelAndView handleRequestInternal(final HttpServletRequest request, final HttpServletResponse response)
throws Exception {
// get CAS ticket
final String ticket = request.getParameter(OAuthConstants.TICKET);
logger.debug("{} : {}", OAuthConstants.TICKET, ticket);
// retrieve callback url from session
final HttpSession session = request.getSession();
String callbackUrl = (String) session.getAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
session.removeAttribute(OAuthConstants.OAUTH20_CALLBACKURL);
if (StringUtils.isBlank(callbackUrl)) {
logger.error("{} is missing from the session and can not be retrieved.", OAuthConstants.OAUTH20_CALLBACKURL);
return new ModelAndView(OAuthConstants.ERROR_VIEW);
}
// and state
final String state = (String) session.getAttribute(OAuthConstants.OAUTH20_STATE);
logger.debug("{} : {}", OAuthConstants.OAUTH20_STATE, state);
session.removeAttribute(OAuthConstants.OAUTH20_STATE);
// return callback url with code & state
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.CODE, ticket);
if (state != null) {
callbackUrl = OAuthUtils.addParameter(callbackUrl, OAuthConstants.STATE, state);
}
logger.debug("{} : {}", OAuthConstants.OAUTH20_CALLBACKURL, callbackUrl);
final Map<String, Object> model = new HashMap<>();
model.put("callbackUrl", callbackUrl);
final Boolean bypassApprovalPrompt = (Boolean) session.getAttribute(OAuthConstants.BYPASS_APPROVAL_PROMPT);
logger.debug("bypassApprovalPrompt : {}", bypassApprovalPrompt);
session.removeAttribute(OAuthConstants.BYPASS_APPROVAL_PROMPT);
// Clients that auto-approve do not need authorization.
if (bypassApprovalPrompt != null && bypassApprovalPrompt) {
return OAuthUtils.redirectTo(callbackUrl);
}
// retrieve service name from session
final String serviceName = (String) session.getAttribute(OAuthConstants.OAUTH20_SERVICE_NAME);
logger.debug("serviceName : {}", serviceName);
model.put("serviceName", serviceName);
return new ModelAndView(OAuthConstants.CONFIRM_VIEW, model);
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:49,代码来源:OAuth20CallbackAuthorizeController.java