@@ -74,7 +74,7 @@ public class WLSDeployArchive {
74
74
/**
75
75
* Top-level archive subdirectory where the $DOMAIN_HOME/bin scripts are stored.
76
76
*/
77
- public static final String ARCHIVE_DOMBIN_TARGET_DIR = WLSDPLY_ARCHIVE_BINARY_DIR + "/domainBin" ;
77
+ public static final String ARCHIVE_DOM_BIN_TARGET_DIR = WLSDPLY_ARCHIVE_BINARY_DIR + "/domainBin" ;
78
78
/**
79
79
* Top-level archive subdirectory where the FileStore directories are stored and the subdirectory
80
80
* to which they will be extracted.
@@ -734,7 +734,7 @@ public String addDomainBinScript(File domainBinPath) throws WLSDeployArchiveIOEx
734
734
LOGGER .entering (CLASS , METHOD , domainBinPath );
735
735
validateExistingFile (domainBinPath , "domainBinPath" , getArchiveFileName (), METHOD );
736
736
737
- String newName = addItemToZip (ARCHIVE_DOMBIN_TARGET_DIR , domainBinPath );
737
+ String newName = addItemToZip (ARCHIVE_DOM_BIN_TARGET_DIR , domainBinPath );
738
738
LOGGER .exiting (CLASS , METHOD , newName );
739
739
return newName ;
740
740
}
@@ -749,9 +749,9 @@ public List<String> listDomainBinScripts() throws WLSDeployArchiveIOException {
749
749
final String METHOD = "listDomainBinScripts" ;
750
750
751
751
LOGGER .entering (CLASS , METHOD );
752
- List <String > result = getZipFile ().listZipEntries (ARCHIVE_DOMBIN_TARGET_DIR + ZIP_SEP );
752
+ List <String > result = getZipFile ().listZipEntries (ARCHIVE_DOM_BIN_TARGET_DIR + ZIP_SEP );
753
753
// Remove the top-level directory entry from the list...
754
- result .remove (ARCHIVE_DOMBIN_TARGET_DIR + ZIP_SEP );
754
+ result .remove (ARCHIVE_DOM_BIN_TARGET_DIR + ZIP_SEP );
755
755
LOGGER .exiting (CLASS , METHOD , result );
756
756
return result ;
757
757
}
0 commit comments