1 48 49 package org.jpublish.repository; 50 51 import java.io.IOException ; 52 53 import org.jpublish.Manager; 54 55 61 62 public interface Repository extends Manager { 63 64 69 70 public String getName(); 71 72 81 82 public String get(String path) throws IOException , ContentNotFoundException; 83 84 92 93 public Content getContent(String path) 94 throws IOException , ContentNotFoundException; 95 96 104 105 public long getLastModified(String path) throws IOException ; 106 107 } 108 | Popular Tags |