/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/common/ |
H A D | Util.java | 123 File filePath = new File(fileName); 125 if (filePath.exists()) { 127 return filePath; 131 if (filePath.getParentFile() != null && filePath.getParentFile().exists()) { 132 localFile = filePath;
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/servlet/ |
H A D | ClientStubsContentSource.java | 99 String filePath = tempDir + System.getProperty("file.separator") + fileName; 100 File file = new File(filePath); 101 attrsMap.put("localDir", filePath); // CAUTION: file instead of dir
|
H A D | LogFilesContentSource.java | 100 String filePath = tempDir + System.getProperty("file.separator") + fileName; 101 File file = new File(filePath); 103 attrsMap.put("id", filePath); // CAUTION: file instead of dir
|
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/ |
H A D | ACCLogger.java | 142 * @param filePath path to the log file to which to log 144 * @return logging Handler if filePath is specified and valid; null otherwise 148 final String filePath = (logService == null) ? null : logService.getFile(); 149 if (filePath == null || filePath.equals("")) { 152 handler = new FileHandler(filePath, true /* append */); 155 File lockFile = new File(filePath + ".lck");
|
H A D | Util.java | 73 * @param filePath 78 public static File verifyFilePath(final String filePath) throws FileNotFoundException, IOException { argument 79 File f = new File(filePath); 96 * @param filePath 101 static File verifyNonDirectoryFilePath(final String filePath) throws FileNotFoundException, IOException { argument 102 File f = verifyFilePath(filePath);
|
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/ |
H A D | AutoDeployedFilesManager.java | 230 File filePath = autodeployDir; 233 filePath = new File(filePath, f.getName()); 236 filePath = new File(filePath, statusDirFile.getName()); 240 File _deployedMarkerFile = new File(filePath + AutoDeployConstants.DEPLOYED); 242 appNames.add(filePath);
|
H A D | AutoDeployer.java | 647 static String getNameFromFilePath(File autodeployDir, File filePath) { //creating module name as file name argument 649 File parent = filePath.getParentFile(); 660 moduleName = filePath.getName(); 662 moduleName = moduleName + "_" + filePath.getName();
|
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/ |
H A D | InstallNodeBaseCommand.java | 178 String filePath = glassFishZipFile.getCanonicalPath(); 179 filePath = filePath.replaceAll("\\\\", "/"); 180 archiveName = filePath.substring(filePath.lastIndexOf("/") + 1, filePath.length());
|
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
H A D | DeploymentProperties.java | 255 public String getName(String filePath) { argument 256 return getProperty(NAME, getDefaultComponentName(filePath)); 383 public String getDefaultContextRoot(String filePath) { argument 384 return getDefaultComponentName(filePath); 387 private String getDefaultComponentName(String filePath) { argument 388 final String fileName = new File(filePath).getName();
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | java.h | 222 FindAbsolutePath(char *filePath);
|
H A D | java.c | 1574 FindAbsolutePath(char *filePath) { argument 1591 if (filePath && !IsAbsolutePath(filePath)) 1593 absolutePath = (char *)MemAlloc(strlen(currentDirectory ) + strlen(filePath) + 2); 1594 sprintf(absolutePath, "%s%c%s", currentDirectory, FILE_SEPARATOR_CHAR, filePath); 1598 absolutePath = filePath;
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/ |
H A D | DeploymentHandler.java | 82 @HandlerInput(name = "filePath", type = String.class), 93 String filePath = (String) handlerCtx.getInputValue("filePath"); 185 payload.put("id", filePath); 217 @HandlerInput(name = "filePath", type = String.class, required = true), 224 String filePath = (String) handlerCtx.getInputValue("filePath"); 246 payload.put("id", filePath);
|
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/ |
H A D | MappingGenerator.java | 482 * @param filePath a directory where *.dbschema is located 485 private static void writeSchemaFile(SchemaElement schema, File filePath) argument 490 new File(filePath, NameUtil.getSchemaResourceName(
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/io/ |
H A D | FileUtils.java | 488 String filePath = f.getAbsolutePath(); 498 _utillogger.log(Level.FINE, "enterprise_util.delete_failed_absent", filePath); 507 _utillogger.log(FILE_OPERATION_LOG_LEVEL, "enterprise_util.error_deleting_file", filePath);
|
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/generator/ |
H A D | Main.java | 302 final String filePath = className.replace('/', File.separatorChar); 304 = filePath + JavaClassWriterHelper.javaExtension_;
|
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/ |
H A D | FileRealmHelper.java | 626 File filePath = keyfile;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/module/ |
H A D | ResourcesDeployer.java | 240 String filePath = file.getPath(); 241 SunResourcesXML sunResourcesXML = new SunResourcesXML(filePath, parser.getResourcesList());
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/ |
H A D | Archivist.java | 1579 * @param filePath to the file to add 1582 protected static void addFileToArchive(WritableArchive archive, String filePath, String entryName) argument 1585 FileInputStream is = new FileInputStream(new File(filePath));
|