Uses of Class
uk.co.lakesidetech.springxmldb.exception.XMLDBDataAccessException

Packages that use XMLDBDataAccessException
uk.co.lakesidetech.springxmldb.dao   
uk.co.lakesidetech.springxmldb.dao.exist   
uk.co.lakesidetech.springxmldb.dao.xindice   
uk.co.lakesidetech.springxmldb.processor   
uk.co.lakesidetech.springxmldb.spring   
 

Uses of XMLDBDataAccessException in uk.co.lakesidetech.springxmldb.dao
 

Methods in uk.co.lakesidetech.springxmldb.dao that throw XMLDBDataAccessException
 void IXUpdateXMLDBDao.updateWithXUpdate(java.lang.String xUpdate, java.lang.String collectionPath)
          run a XUpdate set of commands on a collection in an XML database
 void IXUpdateXMLDBDao.updateResourceWithXUpdate(java.lang.String xUpdate, java.lang.String resourceId, java.lang.String collectionPath)
          run a XUpdate set of commands on a specific resource within a collection in an XML database
 java.util.Map IXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath)
          Query a collection with XQuery and return a map of results with keys of the resource IDs and values of String xml of the results (not necessarily the resource documents, but the result of the query)
 java.util.Map IXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath, java.util.Map variables)
          Query a collection with XQuery and return a map of results with keys of the resource IDs and values of String xml of the results (not necessarily the resource documents, but the result of the query).
 java.util.Map IXPathXMLDBDao.queryWithXPathCollectionAsDOM(java.lang.String xPathQuery, java.lang.String collectionPath)
          Query a collection with xpath and return a map of results with keys of the resource IDs and values of w3c DOM documents of the results (not necessarily the resource documents, but the result of the query)
 java.util.Map IXPathXMLDBDao.queryWithXPathCollectionAsString(java.lang.String xPathQuery, java.lang.String collectionPath)
          Query a collection with xpath and return a map of results with keys of the resource IDs and values of Strings of the results (not necessarily the resource documents, but the result of the query)
 java.util.Map IXPathXMLDBDao.queryResourceWithXPathCollectionAsDOM(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
          Query a particular with xpath and return a map of results with keys of the resource IDs and values of w3c DOM documents of the results (not necessarily the resource documents, but the result of the query)
 java.util.Map IXPathXMLDBDao.queryResourceWithXPathCollectionAsString(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
          Query a particular with xpath and return a map of results with keys of the resource IDs and values of String xml of the results (not necessarily the resource documents, but the result of the query)
 java.lang.String IResourceManageXMLDBDao.insertUpdateXMLDocument(java.lang.String xmlDocument, java.lang.String docID, java.lang.String collectionPath)
          Insert or update a XML document specfied in the String supplied in the parameters.
 java.lang.String IResourceManageXMLDBDao.insertUpdateFile(java.io.File file, java.lang.String docID, java.lang.String collectionPath)
          Insert or update a file (either XML or binary) from a File object to the database.
 java.lang.String IResourceManageXMLDBDao.insertUpdateXMLDocument(java.io.File xmlDocument, java.lang.String docID, java.lang.String collectionPath)
          Insert or update a XML document from a File object to the database.
 java.lang.String IResourceManageXMLDBDao.insertUpdateXMLDocument(org.w3c.dom.Document xmlDocument, java.lang.String docID, java.lang.String collectionPath)
          Insert or update a XML document from a supplied DOM object to the database.
 boolean IResourceManageXMLDBDao.removeDocument(java.lang.String docID, java.lang.String collectionPath)
          Remove a document (XML or binary) from a collection
 org.w3c.dom.Document IResourceManageXMLDBDao.retrieveDocumentAsDOM(java.lang.String docID, java.lang.String collectionPath)
          Retrieve an XML document as a w3c DOM object from a collection in the XML database
 java.lang.String IResourceManageXMLDBDao.retrieveDocumentAsString(java.lang.String docID, java.lang.String collectionPath)
          Retrieve an XML document as a String from a collection in the XML database
 org.xmldb.api.base.Resource IResourceManageXMLDBDao.retrieveDocumentAsResource(java.lang.String docID, java.lang.String collectionPath)
          Retrieve a XML:DB Resource which can be either a binary or XML document from a collection in the XML database
 java.lang.String IResourceManageXMLDBDao.insertUpdateBinaryFile(byte[] docBytes, java.lang.String docID, java.lang.String collectionPath)
          Insert or update a binary byte array into a XML database.
 java.lang.String IResourceManageXMLDBDao.insertUpdateInputStream(java.io.InputStream stream, java.lang.String docID, java.lang.String collectionPath)
          Insert or update information in a inputstream into a XML database.
 void IDatabaseManageXMLDBDao.shutdown()
          Shutdown the database at the URI given by the dao datasource
 void ICollectionManageXMLDBDao.addCollection(java.lang.String existingCollectionPath, java.lang.String newCollectionName)
          Add a new child collection to an underlying existing collection
 void ICollectionManageXMLDBDao.addCollectionPath(java.lang.String collectionPath)
          Add a new collection path to the XML database.
 void ICollectionManageXMLDBDao.removeCollection(java.lang.String collectionPath)
          Remove a collection from the XML datbase given the full collection path
 java.util.Collection ICollectionManageXMLDBDao.getCollectionResourceInfo(java.lang.String collectionPath)
          Get the information on all the resources in a collection given the collection path This method should return a collection (in the java.util sense) of XMLDBResourceInfo objects
 boolean ICollectionManageXMLDBDao.doesCollectionExist(java.lang.String collectionPath)
          Evaluate if a specific collection exists at a collection path in the database
 java.util.Collection ICollectionManageXMLDBDao.getCollectionCollectionInfo(java.lang.String collectionPath)
          Get the information on all child collections of a collection given its collection path This method should return a collection (in the java.util sense) of XMLDBCollectionInfo objects
 void BaseXUpdateXMLDBDao.updateWithXUpdate(java.lang.String xUpdate, java.lang.String collectionPath)
          update items within a collection with a specific Xupdate string
 void BaseXUpdateXMLDBDao.updateResourceWithXUpdate(java.lang.String xUpdate, java.lang.String resourceId, java.lang.String collectionPath)
          updates a specific resource with an xupdate string
 java.util.Map BaseXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath)
           
 java.util.Map BaseXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath, java.util.Map variables)
           
 java.util.Map BaseXPathXMLDBDao.queryWithXPathCollectionAsDOM(java.lang.String xPathQuery, java.lang.String collectionPath)
           
 java.util.Map BaseXPathXMLDBDao.queryWithXPathCollectionAsString(java.lang.String xPathQuery, java.lang.String collectionPath)
           
 java.util.Map BaseXPathXMLDBDao.queryResourceWithXPathCollectionAsDOM(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
           
 java.util.Map BaseXPathXMLDBDao.queryResourceWithXPathCollectionAsString(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateXMLDocument(java.lang.String xmlDocument, java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateXMLDocument(java.io.File xmlDocument, java.lang.String docID, java.lang.String collectionPath)
           
protected  java.lang.String BaseResourceManageXMLDBDao.insertUpdateXMLDocumentObject(java.lang.Object xmlDocument, java.lang.String docID, java.lang.String collectionPath)
          Do the insert/update of the object using the supplied Object as the resource content should be byte[] or String (File works for eXist only) as a XML Resource
protected  java.lang.String BaseResourceManageXMLDBDao.insertUpdateBinaryObject(java.lang.Object binaryResource, java.lang.String docID, java.lang.String collectionPath)
          Do the insert/update of the object using the supplied Object as the resource content should be byte[] or String (File works for eXist only) as a Binary Resource
 boolean BaseResourceManageXMLDBDao.removeDocument(java.lang.String docID, java.lang.String collectionPath)
           
 org.w3c.dom.Document BaseResourceManageXMLDBDao.retrieveDocumentAsDOM(java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.retrieveDocumentAsString(java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateXMLDocument(org.w3c.dom.Document xmlDocument, java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateFile(java.io.File file, java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateBinaryFile(byte[] docBytes, java.lang.String docID, java.lang.String collectionPath)
           
 java.lang.String BaseResourceManageXMLDBDao.insertUpdateInputStream(java.io.InputStream stream, java.lang.String docID, java.lang.String collectionPath)
           
 org.xmldb.api.base.Resource BaseResourceManageXMLDBDao.retrieveDocumentAsResource(java.lang.String docID, java.lang.String collectionPath)
           
 void BaseCollectionManageXMLDBDao.addCollection(java.lang.String existingCollectionPath, java.lang.String newCollectionName)
           
 void BaseCollectionManageXMLDBDao.addCollectionPath(java.lang.String collectionPath)
           
 void BaseCollectionManageXMLDBDao.removeCollection(java.lang.String collectionPath)
           
 boolean BaseCollectionManageXMLDBDao.doesCollectionExist(java.lang.String collectionPath)
           
 java.util.Collection BaseCollectionManageXMLDBDao.getCollectionResourceInfo(java.lang.String collectionPath)
           
 java.util.Collection BaseCollectionManageXMLDBDao.getCollectionCollectionInfo(java.lang.String collectionPath)
           
protected  java.util.Map AbstractXMLDBDao.processResourceSetToDocuments(org.xmldb.api.base.ResourceSet resultSet)
          Processes a resource set of XML:DB resources (providing only they are XML type) to a Map of XML DOM documents keyed on the id of the document.
protected  java.util.Map AbstractXMLDBDao.processResourceSetToStrings(org.xmldb.api.base.ResourceSet resultSet)
           
 

Uses of XMLDBDataAccessException in uk.co.lakesidetech.springxmldb.dao.exist
 

Methods in uk.co.lakesidetech.springxmldb.dao.exist that throw XMLDBDataAccessException
 java.util.Map ExistXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath, java.util.Map variables)
           
 java.util.Map ExistXQueryXMLDBDao.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath)
           
 void ExistDatabaseManageXMLDBDao.shutdown()
           
 java.util.Collection ExistCollectionManageXMLDBDao.getCollectionResourceInfo(java.lang.String collectionPath)
           
 java.util.Collection ExistCollectionManageXMLDBDao.getCollectionCollectionInfo(java.lang.String collectionPath)
           
 

Uses of XMLDBDataAccessException in uk.co.lakesidetech.springxmldb.dao.xindice
 

Methods in uk.co.lakesidetech.springxmldb.dao.xindice that throw XMLDBDataAccessException
 void XindiceCollectionManageXMLDBDao.addCollection(java.lang.String existingCollectionPath, java.lang.String newCollectionName)
          Create a collection using the Xindice collection manager.
 java.util.Collection XindiceCollectionManageXMLDBDao.getCollectionResourceInfo(java.lang.String collectionPath)
           
 java.util.Collection XindiceCollectionManageXMLDBDao.getCollectionCollectionInfo(java.lang.String collectionPath)
           
 

Uses of XMLDBDataAccessException in uk.co.lakesidetech.springxmldb.processor
 

Methods in uk.co.lakesidetech.springxmldb.processor that throw XMLDBDataAccessException
 java.util.Map XMLDBExportProcessor.exportCollection(java.io.File directory, java.lang.String collectionPath, boolean recursive)
          Export an XML database collection to a filesystem directory.
 

Uses of XMLDBDataAccessException in uk.co.lakesidetech.springxmldb.spring
 

Methods in uk.co.lakesidetech.springxmldb.spring that throw XMLDBDataAccessException
 org.w3c.dom.Node SimpleXMLDBFacade.queryWithXPathCollectionAsString(java.lang.String xPathQuery, java.lang.String collectionPath)
           
 org.w3c.dom.Node SimpleXMLDBFacade.queryResourceWithXPathCollectionAsString(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
           
 org.w3c.dom.Node SimpleXMLDBFacade.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath)
           
 org.w3c.dom.Node SimpleXMLDBFacade.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath, java.util.Map variables)
           
 org.w3c.dom.Node CachingXMLDBFacade.queryWithXPathCollectionAsString(java.lang.String xPathQuery, java.lang.String collectionPath)
          (non-Javadoc)
 org.w3c.dom.Node CachingXMLDBFacade.queryResourceWithXPathCollectionAsString(java.lang.String resourceId, java.lang.String xPathQuery, java.lang.String collectionPath)
          (non-Javadoc)
 org.w3c.dom.Node CachingXMLDBFacade.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath)
          (non-Javadoc)
 org.w3c.dom.Node CachingXMLDBFacade.queryWithXQueryCollectionAsString(java.lang.String xQuery, java.lang.String collectionPath, java.util.Map variables)
          (non-Javadoc)