1 22 package org.jboss.deployers.spi.structure.vfs; 23 24 import java.util.SortedSet ; 25 26 import org.jboss.deployers.spi.DeploymentException; 27 import org.jboss.virtual.VirtualFile; 28 29 35 public interface StructuredDeployers 36 { 37 44 public boolean determineStructure(VirtualFile file, StructureMetaData metaData) 45 throws DeploymentException; 46 47 51 public SortedSet <StructureDeployer> getDeployers(); 52 56 public boolean isEmpty(); 57 } 58 | Popular Tags |