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

/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/
H A DExpandWar.java96 * directory structure, and return the absolute pathname to the expanded
111 String pathname = war.toString().replace('\\', '/');
112 if (pathname.endsWith("!/")) {
113 pathname = pathname.substring(0, pathname.length() - 2);
115 int period = pathname.lastIndexOf('.');
116 if (period >= pathname.length() - 4)
117 pathname = pathname
142 expand(Host host, URL war, String pathname) argument
253 validate(Host host, URL war, String pathname) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/
H A DStandardManager.java162 * If this pathname is relative, it will be resolved against the
166 private String pathname = "SESSIONS.ser"; field in class:StandardManager
269 * Return the session persistence pathname, if any.
272 return pathname;
277 * Set the session persistence pathname to the specified value. If no
278 * persistence support is desired, set the pathname to <code>null</code>.
280 * @param pathname New session persistence pathname
282 public void setPathname(String pathname) { argument
283 String oldPathname = this.pathname;
[all...]
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/
H A DJDOCodeGenerator.java614 * @param pathname The path and file name of the input file.
619 private String getFileInfoOfInputFile(String pathname) throws IOException argument
621 File inputFile = new File(pathname);
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deploy/shared/
H A DFileArchive.java833 public boolean accept(File pathname) { argument
834 return ! pathname.getName().equals(MARKER_FILE_PATH);

Completed in 132 milliseconds