1 23 24 29 30 package com.sun.appserv.management.deploy; 31 32 import java.io.File ; 33 import java.io.IOException ; 34 import java.util.jar.JarInputStream ; 35 36 import com.sun.appserv.management.base.MapCapable; 37 38 44 public interface DeploymentSource extends MapCapable 45 { 46 49 public final static String DEPLOYMENT_SOURCE_CLASS_NAME = 50 "com.sun.appserv.management.deploy.DeploymentSource"; 51 52 57 public File getArchive(); 58 59 62 public JarInputStream getArchiveAsStream() 63 throws IOException ; 64 65 69 public boolean isCompleteArchive(); 70 71 75 public String [] getEntriesAdded(); 76 77 81 public String [] getEntriesRemoved(); 82 83 87 public String [] getEntriesDeleted(); 88 } 89 | Popular Tags |