1 package net.sf.maia; 2 3 /*** 4 * 5 * 6 * @author Magnus Grimsell 7 */ 8 public interface Wiki 9 { 10 /*** 11 * Returns a wiki page. 12 * 13 * @param path Path to the wiki page 14 * @return a wiki page 15 */ 16 String getPage(String path); 17 }