Methods Summary |
---|
public java.io.OutputStream | addEntry(java.lang.String name)
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public void | close()close the abstract archive
// nothing to do here
|
public void | closeEntry()
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public void | closeEntry(com.sun.enterprise.deployment.deploy.shared.AbstractArchive os)close a previously returned @see java.io.OutputStream returned
by an addEntry call
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public void | closeEntry(java.io.OutputStream os)close a previously returned @see java.io.OutputStream returned
by an addEntry call
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public boolean | delete()delete the archive
return false;
|
public java.util.Enumeration | entries()
return deployObject.entries();
|
public java.util.Enumeration | entries(java.util.Enumeration embeddedArchives)
// jar file are not recursive
return entries();
|
public boolean | exists()
return false;
|
public long | getArchiveSize()
return -1;
|
public java.lang.String | getArchiveUri()
return null;
|
public com.sun.enterprise.deployment.deploy.shared.AbstractArchive | getEmbeddedArchive(java.lang.String name)create or obtain an embedded archive within this abstraction.
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public java.io.InputStream | getEntry(java.lang.String name)
return deployObject.getEntry(name);
|
public java.util.jar.Manifest | getManifest()
return null;
|
public java.net.URI | getURI()
return null;
|
public java.io.OutputStream | putNextEntry(java.lang.String name)
throw new IOException(localStrings.getLocalString(
"enterprise.deployapi.config.configbeanarchive.notimplemented",
"Operation not implemented"));
|
public boolean | renameTo(java.lang.String name)rename the archive
return false;
|
public boolean | supportsElementsOverwriting()
return false;
|