*/
public void updateArchive(String location, ArchiveEntry entry, boolean autoStart) throws DeploymentException {
// Call listeners
try {
DeploymentListener[] listeners = (DeploymentListener[]) container.getListeners(DeploymentListener.class);
DeploymentEvent event = new DeploymentEvent(new File(location), DeploymentEvent.FILE_CHANGED);
for (int i = 0; i < listeners.length; i++) {
if (listeners[i].fileChanged(event)) {
return;
}
}