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