1 22 package org.jboss.deployers.spi.structure.vfs; 23 24 import java.util.List ; 25 26 31 public interface ContextInfo 32 { 33 37 public ContextInfo getParent(); 38 42 public void setParent(ContextInfo parent); 43 44 48 public String getVfsPath(); 49 53 public void setVfsPath(String path); 54 55 59 public String getMetaDataPath(); 60 64 public void setMetaDataPath(String metaDataPath); 65 66 70 public List <ClassPathInfo> getClassPath(); 71 75 public void setClassPath(List <ClassPathInfo> classPath); 76 } 77 | Popular Tags |