1 7 8 package org.enhydra.snapper.spec; 9 10 import com.lutris.appserver.server.sql.DBTransaction; 11 12 13 public interface PathType extends BaseSpec{ 14 15 public String getName() throws Exception ; 16 public void setName(String str) throws Exception ; 17 public String getID() throws Exception ; 18 public PathType findPathTypeByID(String id, DBTransaction dbt) throws Exception ; 19 public PathType[] getList(DBTransaction dbt) throws Exception ; 20 21 } 22 | Popular Tags |