1 /*2 * snapper 3 *4 * Enhydra super-servlet specification object5 * 6 */7 8 package org.enhydra.snapper.api.persistence;9 10 11 public interface FrequencyPersistenceI{ 12 13 public String getName () throws Exception ;14 public void setName(String name) throws Exception ;15 16 public String getId () throws Exception ;17 public void setId (String Id);18 19 20 }21