1 package com.teamkonzept.webman.mainint.db; 2 3 4 import java.io.*; 5 import java.sql.SQLException ; 6 7 public interface MediaInterface 8 { 9 10 public abstract String getMediaName()throws SQLException ; 11 12 public abstract Integer getMediaID(); 13 14 public abstract String getPath() throws SQLException , Throwable ; 15 16 20 public abstract String toString(); 21 } 22 23 | Popular Tags |