1 16 package org.apache.cocoon.sitemap; 17 18 import org.apache.avalon.framework.component.Component; 19 20 import java.io.IOException ; 21 import java.io.OutputStream ; 22 23 31 public interface SitemapOutputComponent extends Component { 32 33 37 void setOutputStream(OutputStream out) throws IOException ; 38 39 42 String getMimeType(); 43 44 47 boolean shouldSetContentLength(); 48 } 49 | Popular Tags |