Searched defs:session (Results 1 - 25 of 91) sorted by relevance

1234

/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/session/management/
H A DWebEventPersistentManager.java48 package org.glassfish.web.ha.session.management;
58 public void doValveSave(Session session); argument
H A DFullSessionFactory.java47 package org.glassfish.web.ha.session.management;
63 * create a new session
H A DModifiedAttributeSessionFactory.java47 package org.glassfish.web.ha.session.management;
64 * create a new session
H A DModifiedSessionFactory.java47 package org.glassfish.web.ha.session.management;
63 * create a new session
H A DSessionFactory.java47 package org.glassfish.web.ha.session.management;
H A DHAStoreBase.java48 package org.glassfish.web.ha.session.management;
61 import org.apache.catalina.session.StoreBase;
182 * @param session - serialize obj
185 public byte[] getByteArray(Session session) argument
187 return getByteArray(session, false);
191 * Create an byte[] for the session that we can then pass to
194 * @param session
195 * The session we are serializing
198 protected byte[] getByteArray(Session session, boolean compress) argument
229 writeSession(session, oo
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/
H A DConstants.java59 package org.apache.catalina.session;
62 * Manifest constants for the <code>org.apache.catalina.session</code>
70 public static final String Package = "org.apache.catalina.session";
H A DPersistentManager.java59 package org.apache.catalina.session;
H A DCookiePersistentManager.java41 package org.apache.catalina.session;
50 * Session manager for cookie-based persistence, where cookies carry session state.
52 * With cookie-based persistence, only session attribute values of type String are supported.
63 // The name of the cookies that carry session state
71 public void add(Session session) { argument
73 if (!sessionIds.add(session.getIdInternal())) {
74 throw new IllegalArgumentException("Session with id " + session.getIdInternal() +
115 public void remove(Session session) { argument
117 sessionIds.remove(session.getIdInternal());
122 public Cookie toCookie(Session session) throw argument
[all...]
H A DFileStore.java59 package org.apache.catalina.session;
89 * The extension to use for serialized session filenames.
91 private static final String FILE_EXT = ".session";
126 * Our write-through cache of session objects
233 * Return an array containing the session identifiers of all Sessions
248 // Build and return the list of session identifiers
262 * Load and return the Session associated with the specified session
266 * @param id Session identifier of the session to load
326 StandardSession session =
328 session
383 save(Session session) argument
[all...]
H A DStandardSessionFacade.java59 package org.apache.catalina.session;
83 * Construct a new session facade.
85 public StandardSessionFacade(StandardSession session) { argument
87 this.session = session;
92 * Construct a new session facade.
94 public StandardSessionFacade(HttpSession session) { argument
96 this.session = session;
104 * Wrapped session objec
106 private HttpSession session = null; field in class:StandardSessionFacade
[all...]
/glassfish-3.1.2/admingui/updatecenter/src/main/java/org/glassfish/uc/admingui/
H A DUcThread.java61 private HttpSession session = null; field in class:UcThread
64 * Need to pas in the HttpSession instead of sessionMap. getSessionMap() returns a mutable Map, not the actual session map.
69 this.session = s1;
77 session.setAttribute("_updateCountMsg", "");
78 Image image = UpdateCenterHandlers.getUpdateCenterImage( (String)session.getAttribute("topDir"), true);
85 session.setAttribute("_updateCountMsg", GuiUtil.getMessage(UpdateCenterHandlers.BUNDLE, "msg.noUpdates"));
88 session.setAttribute("_updateCountMsg", GuiUtil.getMessage(UpdateCenterHandlers.BUNDLE, "msg.updatesAvailable", new String[]{""+count}));
/glassfish-3.1.2/load-balancer/admin/src/main/java/org/glassfish/loadbalancer/admin/cli/connection/
H A DSSLHostNameVerifier.java61 * @param session SSL session information
66 public boolean verify(String hostname, SSLSession session) { argument
67 if (session != null) {
70 certs = session.getPeerCertificates();
107 if (hostname.equals(session.getPeerHost())) {
111 String msg = LbLogUtil.getStringManager().getString("NotCertMatch", hostname, new String(session.getId()));
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/session/
H A DBeanFieldsTransient.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
55 * The Bean Provider should not declare the session bean fields in the session
68 * The Bean Provider should not declare the session bean fields in the session
89 // fields should not be defined in the session bean class as transient.
99 "Warning: Field [ {0} ] defined within session bean class [ {1} ] is defined as transient. Session bean fields should not be defined in the session bean class as transient.",
127 "The session bean class has defined all fields " +
H A DEjbClassImplementsComponentInterface.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
H A DHomeInterfaceNoFinderMethodNames.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
59 * Since all session objects hide their identity, there is no need to provide
60 * a finder for them. The home interface for a session object must not define
73 * Since all session objects hide their identity, there is no need to provide
74 * a finder for them. The home interface for a session object must not define
H A DSessionBeanInterface.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
55 * All session Beans must implement, directly or indirectly, the SessionBean
62 * All session Beans must implement, directly or indirectly, the SessionBean
111 "Error: [ {0} ] does not properly implement the SessionBean interface. All session Beans must implement the SessionBean interface. [ {1} ] is not a valid bean.",
H A DSessionSynchronizationInterface.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
H A DSessionType.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
55 * the "session-type" element to declare whether the session bean
64 * the "session-type" element to declare whether the session bean
H A DTransactionDemarcationHomeInterface.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
55 * Transaction attributes must not be specified for the methods of a session
64 * Transaction attributes must not be specified for the methods of a session
82 // Transaction attributes must not be specified for the methods of a session
132 // not container managed, but is a session bean
298 "Error: TransactionAttribute [ {0} ] for method [ {1} ] is not valid. Transaction attributes must not be specified for all methods of session bean home interface [ {2} ].",
333 "Error: Transaction attributes must not be specified for the methods defined in the session bean home interface [ {0} ]. Method [ {1} ] has transaction attribute defined within this bean [ {2} ].",
357 "Valid: Transaction attributes must not be specified for the methods defined in the session bean home interface [ {0} ]. Method [ {1} ] has no transaction attribute defined within this bean [ {2} ].",
364 "Valid: There are no method permissions within this bean [ {0} ]. Transaction attributes must not be specified for the methods defined in the session bean home interface [ {1} ]. Method [ {2} ] has no transaction attribute defined.",
H A DTransactionDemarcationSessionSynchronizationInterface.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
H A DTransactionType.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
H A DTransactionTypeBeanManaged.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
H A DTransactionTypeNullForContainerTX.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
51 * For bean managed session beans, it doesn't make sense to have
59 * For bean managed session beans, it doesn't make sense to have
74 // taken from DOL - remember that for bean managed session beans,
80 // shouldn't have container transaction for bean managed session
95 // shouldn't have container transaction for bean managed session
102 "This session bean [ {0} ] is [ {1} ] managed and correctly declares no container transactions.",
108 // shouldn't have container transaction for bean managed session
115 "This session bean [ {0} ] is [ {1} ] managed and correctly declares no container transactions.",
121 // not bean/container managed, but is a session/entit
[all...]
H A DTransientFieldsSerialization.java41 package com.sun.enterprise.tools.verifier.tests.ejb.session;
123 " session bean class [ {1} ] is defined as transient. " +
151 "This session bean class has not stored in a " +

Completed in 1132 milliseconds

1234