Searched defs:collections (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/collections/
H A DCollectionUtils.java41 package com.sun.enterprise.universal.collections;
H A DManifestUtils.java41 package com.sun.enterprise.universal.collections;
/glassfish-3.1.2/common/common-util/src/test/java/com/sun/enterprise/universal/collections/
H A DManifestUtilsTest.java41 package com.sun.enterprise.universal.collections;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DSecurityConstraint.java122 * The set of web resource collections protected by this security
125 private SecurityCollection collections[] = new SecurityCollection[0]; field in class:SecurityConstraint
258 new SecurityCollection[collections.length + 1];
259 for (int i = 0; i < collections.length; i++)
260 results[i] = collections[i];
261 results[collections.length] = collection;
262 collections = results;
309 for (int i = 0; i < collections.length; i++) {
310 if (name.equals(collections[i].getName()))
311 return (collections[
[all...]

Completed in 10 milliseconds