Searched defs:keys (Results 1 - 15 of 15) sorted by relevance

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DEJBObjectCacheListener.java55 public void handleBatchOverflow(ArrayList keys); argument
H A DBaseCache.java456 * get an Iterator for the keys stored in the cache
459 public Iterator keys() { method in class:BaseCache
475 * get an Enumeration for the keys stored in the cache
555 * This function is suitable for multi-valued keys.
662 * @param value to match (for a multi-valued keys)
993 * See also: Constant.java for the keys
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DStore.java131 public String[] keys() throws IOException; method in interface:Store
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/
H A DFileStore.java224 String[] keys = keys();
225 for (int i = 0; i < keys.length; i++) {
226 remove(keys[i]);
239 public String[] keys() throws IOException { method in class:FileStore
H A DJDBCStore.java162 * Variable to hold the <code>keys()</code> prepared statement.
421 public String[] keys() throws IOException { method in class:JDBCStore
426 String keys[] = null;
449 keys = tmpkeys.toArray(new String[tmpkeys.size()]);
465 return(keys);
H A DStandardSession.java863 String keys[] = keys();
864 for (int i = 0; i < keys.length; i++)
865 removeAttribute(keys[i], notify, false);
888 String keys[] = keys();
889 for (int i = 0; i < keys.length; i++) {
890 Object attribute = getAttributeInternal(keys[i]);
915 String keys[] = keys();
2198 protected String[] keys() { method in class:StandardSession
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DInputObject.java202 * Get an enumeration of the keys of the InputObject.
204 * @return An iterator of the keys.
206 public Iterator keys() { method in class:InputObject
212 * Get the number of keys stored in the InputObject.
214 * @return The number of keys in the InputObject.
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/session/management/
H A DReplicationStore.java463 public String[] keys() throws IOException { method in class:ReplicationStore
/glassfish-3.1.2/admin/runtime/jsr77/src/main/java/org/glassfish/admin/runtime/jsr77/
H A DJ2EEManagedObjectMdl.java120 public final Set findNames(String keys) { argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DMapUtil.java63 final Object[] keys = new Object[m.keySet().size()];
64 m.keySet().toArray(keys);
65 return keys;
144 The even-numbered entries are the keys, and the odd-numbered entries are
166 The even-numbered entries are the keys, and the odd-numbered entries are
187 Remove all entries keyed by 'keys'
191 final T[] keys)
193 for (int i = 0; i < keys.length; ++i)
195 m.remove(keys[i]);
309 @return true if non-null Map and all keys an
189 removeAll( final Map<T, ?> m, final T[] keys) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/
H A DCache.java110 * get an Iterator for the keys stored in the cache
113 public Iterator keys(); method in interface:Cache
116 * get an Enumeration for the keys stored in the cache
154 * This function is suitable for multi-valued keys.
164 * This function is suitable for multi-valued keys.
180 * @param value to match (for multi-valued keys)
239 * See also: Constant.java for the keys
H A DBaseCache.java401 * get an Iterator for the keys stored in the cache
404 public Iterator keys() { method in class:BaseCache
420 * get an Enumeration for the keys stored in the cache
501 * This function is suitable for multi-valued keys.
606 * @param value to match (for a multi-valued keys)
934 * See also: Constant.java for the keys
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/cmp/
H A DJDOEJB11HelperImpl.java313 * @param keys Collection of the PrimaryKey instances to be converted.
316 public Collection convertCollectionPrimaryKeyToObjectId (Collection keys) { argument
320 for (java.util.Iterator it = keys.iterator(); it.hasNext();) {
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEntityContainer.java862 * Convert a collection of primary keys to a collection of EJBObjects.
2315 // Compare primary keys.
2829 protected ArrayList keys = new ArrayList(16); field in class:EntityContainer.LocalEJBObjectCacheVictimHandler
2843 keys.add(paramKeys.get(i));
2885 int size = keys.size();
2890 localKeys = keys;
2891 keys = new ArrayList(16);
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/javascripts/
H A Dprototype.js513 keys: function() {

Completed in 312 milliseconds