Searched defs:cookie (Results 1 - 20 of 20) sorted by relevance

/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DHttpResponse.java108 * Special method for adding a session cookie as we should be overriding
110 * @param cookie
112 public void addSessionCookieInternal(final Cookie cookie); argument
H A DHttpRequest.java86 * @param cookie The new cookie
88 public void addCookie(Cookie cookie); argument
191 * request came in through a cookie. This is normally called by the
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/container/
H A DSFSBContainerCallback.java56 StatefulEJBContext ctx, Object cookie);
55 activateEJB(Object sessionKey, StatefulEJBContext ctx, Object cookie) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/authenticator/
H A DSavedRequest.java95 public void addCookie(Cookie cookie) { argument
96 cookies.add(cookie);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationHttpResponse.java224 * @param cookie The new cookie
226 public void addCookie(Cookie cookie) { argument
229 ((HttpServletResponse) getResponse()).addCookie(cookie);
H A DDummyResponse.java143 public void addSessionCookieInternal(final Cookie cookie) {} argument
147 public void addCookie(Cookie cookie) {} argument
H A DStandardHost.java906 * Configures the Secure attribute of the given SSO cookie.
908 * @param cookie the SSO cookie to be configured
911 public void configureSingleSignOnCookieSecure(Cookie cookie, argument
913 cookie.setSecure(hreq.isSecure());
918 * Configures the HttpOnly attribute of the given SSO cookie.
920 * @param cookie the SSO ccokie to be configured
922 public void configureSingleSignOnCookieHttpOnly(Cookie cookie) { argument
H A DDummyRequest.java236 public void addCookie(Cookie cookie) {} argument
336 * sent as a separate <code>JROUTE</code> cookie or appended to the
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DRequestUtil.java84 * Encode a cookie as per RFC 2109. The resulting string can be used
87 * @param cookie The cookie to encode.
90 public static String encodeCookie(Cookie cookie) { argument
92 StringBuilder buf = new StringBuilder( cookie.getName() );
94 buf.append(cookie.getValue());
96 if (cookie.getComment() != null) {
98 buf.append(cookie.getComment());
102 if (cookie.getDomain() != null) {
104 buf.append(cookie
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/pwc/connector/coyote/
H A DPwcCoyoteRequest.java139 * Configures the given JSESSIONID cookie with the cookie-properties from
142 * @param cookie The JSESSIONID cookie to be configured
144 public void configureSessionCookie(Cookie cookie) { argument
146 super.configureSessionCookie(cookie);
152 cookie.setSecure(true);
154 cookie.setSecure(false);
156 cookie.setSecure(isSecure());
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/
H A DCachingResponseWrapper.java199 * The default behavior of this method is to call addCookie(Cookie cookie)
202 public void addCookie(Cookie cookie) { argument
203 super.addCookie(cookie);
206 cookies.add(cookie);
/glassfish-3.1.2/security/webintegration/src/main/java/com/sun/web/security/
H A DHttpResponseWrapper.java85 public void addSessionCookieInternal(final Cookie cookie) { argument
86 httpResponse.addSessionCookieInternal(cookie);
H A DHttpRequestWrapper.java78 public void addCookie(Cookie cookie) { argument
79 httpRequest.addCookie(cookie);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DResponseFacade.java404 public void addCookie(Cookie cookie) { argument
415 response.addCookie(cookie);
H A DResponse.java1024 * @param cookie Cookie to be added
1026 public void addCookie(final Cookie cookie) { argument
1041 (sb, cookie.getVersion(), cookie.getName(),
1042 cookie.getValue(), cookie.getPath(),
1043 cookie.getDomain(), cookie.getComment(),
1044 cookie.getMaxAge(), cookie
1075 addSessionCookieInternal(final Cookie cookie) argument
1859 getCookieString(final Cookie cookie) argument
[all...]
H A DRequest.java300 * Was the requested session ID received in a cookie?
315 // The requested session cookie path, see IT 7426
2005 * @param cookie The new cookie
2008 public void addCookie(Cookie cookie) { argument
2015 cookies.add(cookie);
2126 * request came in through a cookie. This is normally called by the
2136 * Sets the requested session cookie path, see IT 7426
2146 * This method, which is called when the session id is sent as a cookie,
2601 * request came from a cookie
2980 configureSessionCookie(Cookie cookie) argument
[all...]
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DPOARemoteReferenceFactory.java536 java.lang.Object cookie, Servant servant)
535 postinvoke(byte[] ejbKey, POA adapter, String operation, java.lang.Object cookie, Servant servant) argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DLruSessionCache.java200 SFSBContainerCallback container, Object cookie)
275 (StatefulEJBContext) value, cookie);
199 lookupEJB(Serializable sessionKey, SFSBContainerCallback container, Object cookie) argument
/glassfish-3.1.2/webservices/soap-tcp/src/main/java/org/glassfish/webservices/transport/tcp/
H A DServletFakeArtifactSet.java388 public void addCookie(final Cookie cookie) { argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DStatefulSessionContainer.java2255 Object cookie) {
2263 EJBLocalRemoteObject ejbObject = (EJBLocalRemoteObject) cookie;
2254 activateEJB(Object sessionKey, StatefulEJBContext sfsbCtx, Object cookie) argument

Completed in 1447 milliseconds