Searched defs:entry (Results 1 - 25 of 39) sorted by relevance

12

/glassfish-3.1.2/tests/community/web/jsfinjection/src/java/
H A DTestBean.java47 @Resource(name="entry")
48 private String entry; field in class:TestBean
54 return entry;
/glassfish-3.1.2/tests/quicklook/web/jsfinjection/src/java/
H A DTestBean.java47 @Resource(name="entry")
48 private String entry; field in class:TestBean
54 return entry;
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/statistics/
H A DTimeStats.java60 public void entry (); method in interface:TimeStats
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/statistics/impl/
H A DTimeStatsMillisImpl.java71 public void entry (){ method in class:TimeStatsMillisImpl
H A DTimeStatsNanosImpl.java71 public void entry() { method in class:TimeStatsNanosImpl
H A DTimeStatsAbstractImpl.java85 abstract public void entry(); method in class:TimeStatsAbstractImpl
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DWeldCompositeSniffer.java102 private boolean isEntryPresent(ReadableArchive archive, String entry) { argument
105 entryPresent = archive.exists(entry);
H A DWeldSniffer.java138 private boolean isEntryPresent(ReadableArchive archive, String entry) { argument
141 entryPresent = archive.exists(entry);
H A DBeanDeploymentArchiveImpl.java336 String entry = entries.nextElement();
337 if (entry.endsWith(CLASS_SUFFIX)) {
338 if (entry.contains(WEB_INF_CLASSES)) {
341 entry = entry.substring(WEB_INF_CLASSES.length()+1);
343 String className = filenameToClassname(entry);
351 } else if (entry.endsWith("beans.xml")) {
353 File file = new File(uri.getPath() + entry);
361 // If this archive has WEB-INF/lib entry..
374 String entry
486 handleEntry(String entry, boolean isBeanArchive) argument
[all...]
/glassfish-3.1.2/webservices/connector/src/main/java/org/glassfish/webservices/connector/
H A DWebServicesSniffer.java81 private boolean isEntryPresent(ReadableArchive location, String entry) { argument
84 entryPresent = location.exists(entry);
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/datastructure/
H A DCache.java52 * Check if an entry is found for this key object. If found, the entry is
55 * @param key whose mapping entry is to be checked.
56 * @return result object that contains the key with the entry if not busy
64 * Add key and entry value into the cache.
66 * @param entry that is the wrapper of PreparedStatement or
70 public void addToCache(CacheObjectKey key, Object entry, boolean force); argument
104 * Remove the specified entry stored in the statement cache after closing
105 * the statement object associated with this entry. Used when statement is
109 * @param entry
111 purge(Object entry) argument
[all...]
H A DSynchronizedCache.java56 public synchronized void addToCache(CacheObjectKey key, Object entry, boolean force) { argument
57 cacheImpl.addToCache(key, entry, force);
84 public void purge(Object entry) { argument
85 cacheImpl.purge(entry);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DReadableArchiveScannerAdapter.java131 Entry entry = new Entry(name, archive.getEntrySize(name), false);
132 if (selector.isSelected(entry)) {
133 handleEntry(name, entry, logger, entryTask);
160 protected void handleEntry(String name, Entry entry, Logger logger, EntryTask entryTask) argument
171 entryTask.on(entry, is);
176 entry.name, archive.getURI(), entry.size), e);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/
H A DMonitorableFileCache.java70 protected void recalcCacheStatsIfMonitoring(FileCacheEntry entry) { argument
71 recalcCacheStats(entry);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DModuleContentLinker.java100 public static URL createJarUrl(File jarFile, String entry) argument
102 return new URL("jar:" + jarFile.toURI().toURL() + "!/" + entry);
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/
H A DByteCodeEnhancerHelper.java130 ZipEntry entry;
131 while ((entry = zip_in.getNextEntry ()) != null)
134 ZipEntry out_entry = new ZipEntry (entry);
137 if (isClassFileEntry (entry)) //enhance the classfile
161 //copy the entry
183 * Copies a zip entry from one stream to another.
206 * Opens the next zip entry of a zip input stream and copies it to
213 * @return The newly created input stream with the next zip entry.
231 * Modifies the given zip entry so that it can be added to zip file.
232 * The given zip entry represent
241 modifyZipEntry(ZipEntry entry, byte [] bytes, CRC32 crc32) argument
264 isClassFileEntry(ZipEntry entry) argument
[all...]
/glassfish-3.1.2/persistence/jpa-connector/src/main/java/org/glassfish/persistence/jpa/
H A DJPASniffer.java131 private boolean isEntryPresent(ReadableArchive location, String entry) { argument
134 entryPresent = location.exists(entry);
/glassfish-3.1.2/common/scattered-archive-api/src/main/java/org/glassfish/embeddable/archive/
H A DAssembler.java227 ZipEntry entry = new ZipEntry(entryName);
229 jos.putNextEntry(entry);
245 JarEntry entry = entries.nextElement();
246 if (!entry.isDirectory() && !exclude(entry)) {
247 InputStream in = jarFile.getInputStream(entry);
249 jos.putNextEntry(new ZipEntry(entry.getName()));
300 private boolean exclude(JarEntry entry) { argument
302 if (p.matcher(entry.getName()).matches()) {
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DV2DottedNameSupport.java155 for (Map.Entry<Dom, String> entry : nodes.entrySet()) {
157 String dottedName = entry.getValue();
159 result.put(entry.getKey(), entry.getValue());
391 private int getPrecedenceLevel(Dom entry) { argument
392 String parent = entry.parent().typeName();
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/
H A DCachingFilter.java128 * - Check if we have a response entry in the cache already.
129 * - If there is entry and is valid, write out the response from that
130 * entry.
160 HttpCacheEntry entry = null;
167 entry = (HttpCacheEntry) cache.get(key);
169 if (entry != null && entry.isValid()) {
170 // see if there is cached entry and is valid
176 * a cache entry needs to be generated or refreshed.
178 * same cache entry, the
294 sendCachedResponse(HttpCacheEntry entry, HttpServletResponse response) argument
351 writeBody(HttpCacheEntry entry, HttpServletResponse response) argument
[all...]
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceCache.java91 * Path -> Cache entry.
116 * Entry hit ratio at which an entry will never be removed from the cache.
117 * Compared with entry.access / hitsCount
184 * Return desired entry access ratio.
192 * Set the desired entry access ratio.
277 // Randomly select an entry in the array
355 public void load(CacheEntry entry) { argument
356 if (entry.exists) {
357 if (insertCache(entry)) {
358 cacheSize += entry
[all...]
H A DWARDirContext.java249 Entry entry = treeLookup(name);
250 if (entry == null)
253 ZipEntry zipEntry = entry.getEntry();
255 return new WARDirContext(base, entry);
257 return new WARResource(entry.getEntry());
334 Entry entry = treeLookup(name);
335 if (entry == null)
338 return new NamingContextEnumeration(list(entry).iterator());
378 Entry entry = treeLookup(name);
379 if (entry
765 normalize(ZipEntry entry) argument
853 list(Entry entry) argument
890 Entry(String name, ZipEntry entry) argument
902 protected ZipEntry entry = null; field in class:WARDirContext.Entry
940 addChild(Entry entry) argument
980 WARResource(ZipEntry entry) argument
988 protected ZipEntry entry; field in class:WARDirContext.WARResource
[all...]
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DStandAloneAppClientInfo.java316 String entry, AnnotationDetector detector,
321 return detector.containsAnnotation(archive, entry);
315 classContainsAnnotation( String entry, AnnotationDetector detector, ReadableArchive archive, ApplicationClientDescriptor descriptor) argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/ssl/
H A DJarSigner.java284 * Add attributes for the current entry.
288 * @param entry - The named entry in the manifest. null means the Main Attribute section.
292 Manifest manifest, String entry) {
293 Attributes attributes = (entry == null)
294 ? manifest.getMainAttributes() : manifest.getAttributes(entry);
346 * @param je the jar entry
368 * @param je The jar entry.
291 appendAttributes(StringBuilder manifestEntry, Manifest manifest, String entry) argument
/glassfish-3.1.2/security/jaspic-provider-framework/src/main/java/com/sun/jaspic/config/jaas/
H A DJAASAuthContextHelper.java77 private AppConfigurationEntry[] entry; field in class:JAASAuthContextHelper
95 entry = jaasConfig.getAppConfigurationEntry(appContext);
96 if (entry == null) {
98 entry = jaasConfig.getAppConfigurationEntry(DEFAULT_ENTRY_NAME);
99 if (entry == null) {
100 entry = new AppConfigurationEntry[0];
138 Constructor[] ctor = new Constructor[entry.length];
141 for (int i = 0; i < entry.length; i++) {
143 String clazz = entry[i].getLoginModuleName();
230 if (entry[
[all...]

Completed in 314 milliseconds

12