1 48 49 package org.jpublish.resource; 50 51 import java.io.IOException ; 52 import java.io.OutputStream ; 53 54 import org.jpublish.Manager; 55 56 61 62 public interface ResourceManager extends Manager { 63 64 72 73 public void load(String path, OutputStream out) throws IOException , 74 ResourceNotFoundException; 75 76 83 84 public boolean exists(String path) throws IOException ; 85 86 94 95 public long getLastModified(String path) throws IOException ; 96 97 105 106 public long getContentLength(String path) throws IOException ; 107 108 } 109 | Popular Tags |