Uses of Interface
org.openrdf.sesame.admin.AdminListener

Packages that use AdminListener
org.openrdf.sesame.admin Functionality for adding and deleting data to/from a repository. 
org.openrdf.sesame.repository Repository API interfaces. 
org.openrdf.sesame.repository.local Implementations of the repository API for local Sesame repositories. 
org.openrdf.sesame.repository.remote Implementations of the repository API for remote Sesame repositories. 
 

Uses of AdminListener in org.openrdf.sesame.admin
 

Classes in org.openrdf.sesame.admin that implement AdminListener
 class AdminMsgCollector
          An implementation of the AdminListener interface that collects the reported messages and allows them to be checked after the performed action has (sucessfully or unsuccessfully) been completed.
 class DummyAdminListener
          A dummy AdminListener that does absolutely nothing at all.
 class HtmlAdminMsgWriter
           
 class StdOutAdminListener
          A simple AdminListener implementation that reports all messages to System.out.
 class XmlAdminMsgWriter
          Writer for writing administrative messages in XML format.
 

Methods in org.openrdf.sesame.admin with parameters of type AdminListener
 void XmlAdminMsgReader.read(InputStream in, AdminListener listener)
           
 void RdfAdmin.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
          Removes statements matching the pattern (subject, predicate, object).
 void RdfAdmin.clearRepository(AdminListener listener)
          Clears the repository of this RdfAdmin.
 int RdfAdmin.addRdfModel(InputStream in, String baseURL, AdminListener listener, boolean verifyData)
          Reads and parses an RDF/XML file from the supplied InputStream and adds the triples to the RdfRepository of this RdfAdmin.
 int RdfAdmin.addRdfModel(InputStream inputStream, String baseURL, AdminListener listener, RDFFormat dataFormat, boolean verifyData)
          Reads and parses an RDF file from the supplied InputStream and adds the triples to the RdfRepository of this RdfAdmin.
 int RdfAdmin.addRdfModel(Reader reader, String baseURL, AdminListener listener, RDFFormat dataFormat, boolean verifyData)
          Reads and parses an RDF file from the supplied Reader and adds the triples to the RdfRepository of this RdfAdmin.
 

Constructors in org.openrdf.sesame.admin with parameters of type AdminListener
StatusReporter(long interval, AdminListener report)
           
 

Uses of AdminListener in org.openrdf.sesame.repository
 

Methods in org.openrdf.sesame.repository with parameters of type AdminListener
 void SesameRepository.addData(URL dataURL, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
          Adds the RDF data that can be found at the specified URL to the repository.
 void SesameRepository.addData(File dataFile, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
          Adds RDF data from the specified file to the repository.
 void SesameRepository.addData(String data, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
          Adds an RDF document to the repository.
 void SesameRepository.addData(SesameRepository repository, AdminListener listener)
          Adds the contents of the supplied SesameRepository to this repository.
 void SesameRepository.addData(Reader data, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
          Adds RDF data from a Reader to the repository.
 void SesameRepository.addData(InputStream data, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
          Adds RDF data from an InputStream to the repository.
 void SesameRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
          Removes statements from the repository.
 void SesameRepository.clear(AdminListener listener)
          Clears the repository.
 

Uses of AdminListener in org.openrdf.sesame.repository.local
 

Methods in org.openrdf.sesame.repository.local with parameters of type AdminListener
 void LocalRepository.addData(URL dataURL, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
           
 void LocalRepository.addData(File dataFile, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
           
 void LocalRepository.addData(String data, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
           
 void LocalRepository.addData(SesameRepository repository, AdminListener listener)
           
 void LocalRepository.addData(Reader reader, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
           
 void LocalRepository.addData(InputStream dataStream, String baseURI, RDFFormat format, boolean verifyData, AdminListener listener)
           
 void LocalRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
           
 void LocalRepository.clear(AdminListener listener)
           
 

Uses of AdminListener in org.openrdf.sesame.repository.remote
 

Methods in org.openrdf.sesame.repository.remote with parameters of type AdminListener
 void HTTPRepository.addData(URL dataURL, String baseURI, RDFFormat dataFormat, boolean verifyData, AdminListener listener)
           
 void HTTPRepository.addData(File dataFile, String baseURI, RDFFormat dataFormat, boolean verifyData, AdminListener listener)
           
 void HTTPRepository.addData(InputStream data, String baseURI, RDFFormat dataFormat, boolean verifyData, AdminListener listener)
           
 void HTTPRepository.addData(Reader data, String baseURI, RDFFormat dataFormat, boolean verifyData, AdminListener listener)
           
 void HTTPRepository.addData(String data, String baseURI, RDFFormat dataFormat, boolean verifyData, AdminListener listener)
           
 void HTTPRepository.addData(SesameRepository repository, AdminListener listener)
           
 void HTTPRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
           
 void HTTPRepository.clear(AdminListener listener)
           
 



Copyright © 2002-2006 Aduna BV, GNU LGPL License applies.