/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/deployment/ |
H A D | GenericHandler.java | 82 public void expand(ReadableArchive source, WritableArchive target, method in class:GenericHandler
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/archive/ |
H A D | ArchiveHandler.java | 115 public void expand(ReadableArchive source, WritableArchive target, DeploymentContext context) throws IOException; method in interface:ArchiveHandler
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | ExpandWar.java | 107 public static String expand(Host host, URL war) method in class:ExpandWar 122 return expand(host, war, pathname); 142 public static String expand(Host host, URL war, String pathname) method in class:ExpandWar 184 // Trying to expand outside the docBase 199 expand(input, expandedFile); 461 protected static void expand(InputStream input, File docBase, String name) method in class:ExpandWar 465 expand(input, file); 476 private static void expand(InputStream input, File file) method in class:ExpandWar
|
H A D | HostConfig.java | 640 log.fine(sm.getString("hostConfig.expand", files[i])); 647 path = ExpandWar.expand(host, url); 650 log.warning(sm.getString("hostConfig.expand.error", 655 sm.getString("hostConfig.expand.error", 667 sm.getString("hostConfig.expand.error", 989 protected String expand(URL war) throws IOException { method in class:HostConfig 991 return ExpandWar.expand(host,war); 1005 protected void expand(InputStream input, File docBase, String name) method in class:HostConfig 1008 ExpandWar.expand(input,docBase,name);
|
/glassfish-3.1.2/admingui/plugin-service/src/main/java/org/glassfish/admingui/plugin/ |
H A D | TOCItem.java | 78 return this.expand; 85 void setExpand(boolean expand) { argument 86 this.expand = expand; 143 * The <code>text</code> and <code>expand</code> values are not used 171 private boolean expand; field in class:TOCItem
|
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/ |
H A D | SynchronizeInstanceCommand.java | 235 expand(appDir, archive); 434 private static void expand(File dir, File archive) throws Exception { method in class:SynchronizeInstanceCommand
|
/glassfish-3.1.2/deployment/javaee-full/src/main/java/org/glassfish/javaee/full/deployment/ |
H A D | EarHandler.java | 141 public void expand(ReadableArchive source, WritableArchive target, DeploymentContext context) throws IOException { method in class:EarHandler 142 // expand the top level first so we could read application.xml 143 super.expand(source, target, context); 156 // now start to expand the sub modules 185 * expand the submodule, make sure it is also of the 187 * in which case we don't need to expand it because the developer 192 subHandler.expand(subArchiveToExpand, subTarget, context); 252 * will be xxx_jar) and we should expand subArchive into subTarget. 255 * we do not want to expand the directory onto itself. 259 * we DO want to expand xx [all...] |
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/ |
H A D | BundleProvisioner.java | 626 private List<URI> getLocations(String list, boolean expand) { argument 639 if (expand && isDirectory(uri)) {
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/provider/ |
H A D | PolicyParser.java | 126 private String expand(String value) method in class:PolicyParser 129 return expand(value, false); 132 private String expand(String value, boolean encodeURL) method in class:PolicyParser 138 return PropertyExpander.expand(value, encodeURL); 215 // could be null if we couldn't expand a property 261 return expand(keyStoreUrlString, true).replace 296 return expand(storePassURL, true).replace 512 principalName = expand(principalName); 575 if (e.signedBy != null) e.signedBy = expand(e.signedBy); 584 e.codeBase = expand( [all...] |