当前位置: 首页>>代码示例>>Java>>正文


Java Session.removeNote方法代码示例

本文整理汇总了Java中org.apache.catalina.Session.removeNote方法的典型用法代码示例。如果您正苦于以下问题:Java Session.removeNote方法的具体用法?Java Session.removeNote怎么用?Java Session.removeNote使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.catalina.Session的用法示例。


在下文中一共展示了Session.removeNote方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: register

import org.apache.catalina.Session; //导入方法依赖的package包/类
/**
 * Register an authenticated Principal and authentication type in our
 * request, in the current session (if there is one), and with our
 * SingleSignOn valve, if there is one.  Set the appropriate cookie
 * to be returned.
 *
 * @param request The servlet request we are processing
 * @param response The servlet response we are generating
 * @param principal The authenticated Principal to be registered
 * @param authType The authentication type to be registered
 * @param username Username used to authenticate (if any)
 * @param password Password used to authenticate (if any)
 */
protected void register(HttpRequest request, HttpResponse response,
                        Principal principal, String authType,
                        String username, String password) {

    if (debug >= 1)
        log("Authenticated '" + principal.getName() + "' with type '"
            + authType + "'");

    // Cache the authentication information in our request
    request.setAuthType(authType);
    request.setUserPrincipal(principal);

    // Cache the authentication information in our session, if any
    if (cache) {
        Session session = getSession(request, false);
        if (session != null) {
            session.setAuthType(authType);
            session.setPrincipal(principal);
            if (username != null)
                session.setNote(Constants.SESS_USERNAME_NOTE, username);
            else
                session.removeNote(Constants.SESS_USERNAME_NOTE);
            if (password != null)
                session.setNote(Constants.SESS_PASSWORD_NOTE, password);
            else
                session.removeNote(Constants.SESS_PASSWORD_NOTE);
        }
    }

    // Construct a cookie to be returned to the client
    if (sso == null)
        return;
    HttpServletRequest hreq =
        (HttpServletRequest) request.getRequest();
    HttpServletResponse hres =
        (HttpServletResponse) response.getResponse();
    String value = generateSessionId();
    Cookie cookie = new Cookie(Constants.SINGLE_SIGN_ON_COOKIE, value);
    cookie.setMaxAge(-1);
    cookie.setPath("/");
    hres.addCookie(cookie);

    // Register this principal with our SSO valve
    sso.register(value, principal, authType, username, password);
    request.setNote(Constants.REQ_SSOID_NOTE, value);

}
 
开发者ID:c-rainstorm,项目名称:jerrydog,代码行数:61,代码来源:AuthenticatorBase.java

示例2: restoreRequest

import org.apache.catalina.Session; //导入方法依赖的package包/类
/**
 * Restore the original request from information stored in our session.
 * If the original request is no longer present (because the session
 * timed out), return <code>false</code>; otherwise, return
 * <code>true</code>.
 *
 * @param request The request to be restored
 * @param session The session containing the saved information
 */
protected boolean restoreRequest(HttpRequest request, Session session) {

    // Retrieve and remove the SavedRequest object from our session
    SavedRequest saved = (SavedRequest)
        session.getNote(Constants.FORM_REQUEST_NOTE);
    session.removeNote(Constants.FORM_REQUEST_NOTE);
    session.removeNote(Constants.FORM_PRINCIPAL_NOTE);
    if (saved == null)
        return (false);

    // Modify our current request to reflect the original one
    request.clearCookies();
    Iterator cookies = saved.getCookies();
    while (cookies.hasNext()) {
        request.addCookie((Cookie) cookies.next());
    }
    request.clearHeaders();
    Iterator names = saved.getHeaderNames();
    while (names.hasNext()) {
        String name = (String) names.next();
        Iterator values = saved.getHeaderValues(name);
        while (values.hasNext()) {
            request.addHeader(name, (String) values.next());
        }
    }
    request.clearLocales();
    Iterator locales = saved.getLocales();
    while (locales.hasNext()) {
        request.addLocale((Locale) locales.next());
    }
    request.clearParameters();
    if ("POST".equalsIgnoreCase(saved.getMethod())) {
        Iterator paramNames = saved.getParameterNames();
        while (paramNames.hasNext()) {
            String paramName = (String) paramNames.next();
            String paramValues[] =
                (String[]) saved.getParameterValues(paramName);
            request.addParameter(paramName, paramValues);
        }
    }
    request.setMethod(saved.getMethod());
    request.setQueryString(saved.getQueryString());
    request.setRequestURI(saved.getRequestURI());
    return (true);

}
 
开发者ID:c-rainstorm,项目名称:jerrydog,代码行数:56,代码来源:FormAuthenticator.java


注:本文中的org.apache.catalina.Session.removeNote方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。