1 17 package org.apache.excalibur.source; 18 19 import java.io.IOException ; 20 import java.io.OutputStream ; 21 22 36 public interface ModifiableSource 37 extends Source 38 { 39 42 OutputStream getOutputStream() throws IOException ; 43 44 47 void delete() throws SourceException; 48 49 55 boolean canCancel(OutputStream stream); 56 57 63 void cancel(OutputStream stream) throws IOException ; 64 65 } 66 | Popular Tags |