View Javadoc

1   /*
2    * Created on 25-Jul-2004
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package olr.statementpool;
8   
9   import olr.rdf.Statement;
10  import olr.rdf.StatementPool;
11  
12  public interface DbStatementPool extends StatementPool
13  {
14      public abstract void isImportedResource(String subject);
15  
16      public abstract DBStatement saveStatementToDB(Statement statement)
17              throws Exception;
18  
19      public abstract boolean removeStatementOfUserFromDB(DBStatement statement)
20              throws Exception;
21  
22      public abstract void saveCourseToDB(String resource) throws Exception;
23      
24      public abstract olr.om.Model getModel();
25  }