1 22 package org.jboss.deployers.spi.structure.vfs; 23 24 import java.util.SortedSet ; 25 26 32 public interface StructureMetaData 33 { 34 40 public void addContext(ContextInfo context); 41 46 public ContextInfo getContext(String vfsPath); 47 52 public ContextInfo removeContext(String vfsPath); 53 58 public SortedSet <ContextInfo> getContexts(); 59 } 60 | Popular Tags |