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


Java Session.setNote方法代码示例

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


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

示例1: saveRequest

import org.apache.catalina.Session; //导入方法依赖的package包/类
/**
 * Save the original request information into our session.
 *
 * @param request The request to be saved
 * @param session The session to contain the saved information
 * @throws IOException
 */
protected void saveRequest(Request request, Session session)
    throws IOException {

    // Create and populate a SavedRequest object for this request
    SavedRequest saved = new SavedRequest();
    Cookie cookies[] = request.getCookies();
    if (cookies != null) {
        for (int i = 0; i < cookies.length; i++) {
            saved.addCookie(cookies[i]);
        }
    }
    Enumeration<String> names = request.getHeaderNames();
    while (names.hasMoreElements()) {
        String name = names.nextElement();
        Enumeration<String> values = request.getHeaders(name);
        while (values.hasMoreElements()) {
            String value = values.nextElement();
            saved.addHeader(name, value);
        }
    }
    Enumeration<Locale> locales = request.getLocales();
    while (locales.hasMoreElements()) {
        Locale locale = locales.nextElement();
        saved.addLocale(locale);
    }

    // May need to acknowledge a 100-continue expectation
    request.getResponse().sendAcknowledgement();

    ByteChunk body = new ByteChunk();
    body.setLimit(request.getConnector().getMaxSavePostSize());

    byte[] buffer = new byte[4096];
    int bytesRead;
    InputStream is = request.getInputStream();

    while ( (bytesRead = is.read(buffer) ) >= 0) {
        body.append(buffer, 0, bytesRead);
    }

    // Only save the request body if there is something to save
    if (body.getLength() > 0) {
        saved.setContentType(request.getContentType());
        saved.setBody(body);
    }

    saved.setMethod(request.getMethod());
    saved.setQueryString(request.getQueryString());
    saved.setRequestURI(request.getRequestURI());
    saved.setDecodedRequestURI(request.getDecodedRequestURI());

    // Stash the SavedRequest in our session for later use
    session.setNote(Constants.FORM_REQUEST_NOTE, saved);
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:62,代码来源:FormAuthenticator.java

示例2: 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

示例3: saveRequest

import org.apache.catalina.Session; //导入方法依赖的package包/类
/**
 * Save the original request information into our session.
 *
 * @param request The request to be saved
 * @param session The session to contain the saved information
 */
private void saveRequest(HttpRequest request, Session session) {

    // Create and populate a SavedRequest object for this request
    HttpServletRequest hreq = (HttpServletRequest) request.getRequest();
    SavedRequest saved = new SavedRequest();
    Cookie cookies[] = hreq.getCookies();
    if (cookies != null) {
        for (int i = 0; i < cookies.length; i++)
            saved.addCookie(cookies[i]);
    }
    Enumeration names = hreq.getHeaderNames();
    while (names.hasMoreElements()) {
        String name = (String) names.nextElement();
        Enumeration values = hreq.getHeaders(name);
        while (values.hasMoreElements()) {
            String value = (String) values.nextElement();
            saved.addHeader(name, value);
        }
    }
    Enumeration locales = hreq.getLocales();
    while (locales.hasMoreElements()) {
        Locale locale = (Locale) locales.nextElement();
        saved.addLocale(locale);
    }
    Map parameters = hreq.getParameterMap();
    Iterator paramNames = parameters.keySet().iterator();
    while (paramNames.hasNext()) {
        String paramName = (String) paramNames.next();
        String paramValues[] = (String[]) parameters.get(paramName);
        saved.addParameter(paramName, paramValues);
    }
    saved.setMethod(hreq.getMethod());
    saved.setQueryString(hreq.getQueryString());
    saved.setRequestURI(hreq.getRequestURI());

    // Stash the SavedRequest in our session for later use
    session.setNote(Constants.FORM_REQUEST_NOTE, saved);

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

示例4: saveRequest

import org.apache.catalina.Session; //导入方法依赖的package包/类
/**
 * Save the original request information into our session.
 *
 * @param request
 *            The request to be saved
 * @param session
 *            The session to contain the saved information
 * @throws IOException
 */
protected void saveRequest(Request request, Session session) throws IOException {

	// Create and populate a SavedRequest object for this request
	SavedRequest saved = new SavedRequest();
	Cookie cookies[] = request.getCookies();
	if (cookies != null) {
		for (int i = 0; i < cookies.length; i++) {
			saved.addCookie(cookies[i]);
		}
	}
	Enumeration<String> names = request.getHeaderNames();
	while (names.hasMoreElements()) {
		String name = names.nextElement();
		Enumeration<String> values = request.getHeaders(name);
		while (values.hasMoreElements()) {
			String value = values.nextElement();
			saved.addHeader(name, value);
		}
	}
	Enumeration<Locale> locales = request.getLocales();
	while (locales.hasMoreElements()) {
		Locale locale = locales.nextElement();
		saved.addLocale(locale);
	}

	// May need to acknowledge a 100-continue expectation
	request.getResponse().sendAcknowledgement();

	ByteChunk body = new ByteChunk();
	body.setLimit(request.getConnector().getMaxSavePostSize());

	byte[] buffer = new byte[4096];
	int bytesRead;
	InputStream is = request.getInputStream();

	while ((bytesRead = is.read(buffer)) >= 0) {
		body.append(buffer, 0, bytesRead);
	}

	// Only save the request body if there is something to save
	if (body.getLength() > 0) {
		saved.setContentType(request.getContentType());
		saved.setBody(body);
	}

	saved.setMethod(request.getMethod());
	saved.setQueryString(request.getQueryString());
	saved.setRequestURI(request.getRequestURI());
	saved.setDecodedRequestURI(request.getDecodedRequestURI());

	// Stash the SavedRequest in our session for later use
	session.setNote(Constants.FORM_REQUEST_NOTE, saved);
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:63,代码来源:FormAuthenticator.java


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