1 16 package org.apache.cocoon.environment; 17 18 import org.apache.avalon.excalibur.pool.Recyclable; 19 import org.apache.cocoon.ProcessingException; 20 import org.apache.excalibur.xml.sax.XMLizable; 21 import org.xml.sax.InputSource ; 22 23 import java.io.IOException ; 24 import java.io.InputStream ; 25 26 38 39 public interface Source extends Recyclable, XMLizable { 40 44 long getLastModified(); 45 46 50 long getContentLength(); 51 52 55 InputStream getInputStream() 56 throws ProcessingException, IOException ; 57 58 66 InputSource getInputSource() 67 throws ProcessingException, IOException ; 68 69 72 String getSystemId(); 73 } 74 | Popular Tags |