|
Xindice API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XindiceException | |
org.apache.xindice.core | This is the top-level package for all Xindice Core functionality. |
org.apache.xindice.core.filer | Defines the Xindice Filer interface and implements several Filers, including BTreeFiler and HashFiler. |
org.apache.xindice.core.indexer | Defines the Xindice Indexer interface and implements the IndexManager, and NodeIndexer classes. |
org.apache.xindice.core.objects | Defines the Xindice XMLObject interface and implements XMLObjectManager, a reflection/invokation system and a Simple XMLObject implementation. |
org.apache.xindice.core.query | Implements the Xindice QueryEngine and XPathQueryResolver. |
org.apache.xindice.core.request | Implements several interfaces for extending Xindice resources into the standard Java URLConnection system. |
org.apache.xindice.core.security | Defines several classes for Xindice access control and authentication. |
org.apache.xindice.core.xupdate | Defines several classes for Xindice XUpdate query processing. |
org.apache.xindice.server | This package contains all of the classes that comprise the Xindice server framework. |
org.apache.xindice.server.components | This package contains some Xindice server components. |
org.apache.xindice.server.methods | This package contains all of the classes that comprise the Xindice server methods. |
org.apache.xindice.server.services | Defines several Services that plug into the Xindice server framework in order to allow Xindice to operate as a stand-alone Server. |
org.apache.xindice.tools.command | Implements the commands that are available via the Command Line Tools. |
org.apache.xindice.util | This package contains many of the utility classes required by Xindice |
org.apache.xindice.xml.dom | Implements the Xindice Compressed DOM and DOMParser. |
Uses of XindiceException in org.apache.xindice.core |
Subclasses of XindiceException in org.apache.xindice.core | |
class |
DBException
A DBException is thrown by the database if an exception occurs in the managing (creating, dropping) database objects such as Collections, Indexes, and XMLObjects. |
Methods in org.apache.xindice.core that throw XindiceException | |
void |
CollectionManager.setConfig(Configuration config)
|
void |
Collection.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.core.filer |
Subclasses of XindiceException in org.apache.xindice.core.filer | |
class |
BTreeCorruptException
A BTreecorruptException is thrown by the BTree if the BTree appears to be corrupted in some way. |
class |
BTreeException
A BTreeException is thrown by the BTree if an exception occurs in the managing of the BTree. |
class |
BTreeNotFoundException
A BTreeNotFoundException is thrown by the BTree if a Value can't be found in the BTree. |
class |
FilerException
A FilerException is thrown by a Filer if an exception occurs in the managing of the Filer. |
Methods in org.apache.xindice.core.filer that throw XindiceException | |
void |
FSFiler.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.core.indexer |
Subclasses of XindiceException in org.apache.xindice.core.indexer | |
class |
CannotCreateException
A CannotCreateException is thrown if an Indexer cannot be properly created in the server context for some reason. |
class |
DuplicateIndexException
A DuplicateIndexException is thrown if an Indexer create attempt duplicates an existing Indexer. |
class |
IndexerException
A IndexerException is thrown by an Indexer if an exception occurs in the managing of the Indexer. |
Methods in org.apache.xindice.core.indexer that throw XindiceException | |
void |
IndexManager.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.core.objects |
Subclasses of XindiceException in org.apache.xindice.core.objects | |
class |
ClassFormatException
A ClassFormatException is thrown if an XMLObject exposes overloaded methods or other non-supported signatures. |
class |
DuplicateObjectException
A DuplicateObjectException is thrown if an XMLObject create attempt duplicates an existing XMLObject. |
class |
InvalidContextException
A InvalidContextException is thrown if an XMLObject does not belong to a specified context. |
class |
MethodNotFoundException
A MethodNotFoundException is thrown by the Reflector if a method lookup failes on an XMLObject. |
class |
XMLObjectException
A XMLObjectException is thrown by the Reflector if an exception occurs in the reflection, lookup, or execution of an XMLObject's method. |
class |
XMLObjectRuntimeException
A XMLObjectRuntimeException is thrown if an uncaught Exception occurs while executing an XMLObject's method. |
Methods in org.apache.xindice.core.objects that throw XindiceException | |
void |
SimpleReflectable.setConfig(Configuration config)
|
void |
XMLObjectManager.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.core.query |
Subclasses of XindiceException in org.apache.xindice.core.query | |
class |
CompilationException
A CompilationException is thrown by a Query if for some reason, it can't compile the query being processed. |
class |
ProcessingException
A ProcessingException is thrown by a Query if for some reason, it fails to actually process the query request. |
class |
QueryException
A QueryException is thrown by a Query if an exception occurs in the processing of the Query. |
class |
StyleNotFoundException
A StyleNotFoundException is thrown by a Query if the QueryEngine can't resolve a specified style name. |
Methods in org.apache.xindice.core.query that throw XindiceException | |
void |
XPathQueryResolver.setConfig(Configuration config)
|
void |
QueryEngine.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.core.request |
Methods in org.apache.xindice.core.request that throw XindiceException | |
void |
URIMapper.setURI(java.lang.String uri)
setURI sets the URI for the URIMapper and parses it. |
Constructors in org.apache.xindice.core.request that throw XindiceException | |
URIMapper(java.lang.String uri)
Constructor for older URIMapper instances |
Uses of XindiceException in org.apache.xindice.core.security |
Subclasses of XindiceException in org.apache.xindice.core.security | |
class |
AccessDeniedException
A AccessDeniedException is thrown if access is denied to a resource within the database. |
class |
InvalidCredentialsException
A InvalidCredentialsException is thrown if the credentials used in an access control method are invalid. |
class |
InvalidPasswordException
A InvalidPasswordException is thrown if access is denied to a resource within the database. |
class |
SecurityException
A SecurityException is thrown if access is denied to a resource within the database. |
class |
UnknownUserException
A UnknownUserException is thrown if access is denied to a resource within the database. |
Uses of XindiceException in org.apache.xindice.core.xupdate |
Methods in org.apache.xindice.core.xupdate that throw XindiceException | |
void |
XUpdateQueryResolver.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.server |
Subclasses of XindiceException in org.apache.xindice.server | |
class |
ParameterException
A ParameterException is thrown in cases where a supplied parameter is, for some reason, invalid. |
Uses of XindiceException in org.apache.xindice.server.components |
Methods in org.apache.xindice.server.components that throw XindiceException | |
void |
BasicAuthentication.setConfig(Configuration config)
|
void |
DBConduit.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.server.methods |
Methods in org.apache.xindice.server.methods that throw XindiceException | |
void |
PUT.setConfig(Configuration config)
|
void |
GET.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.server.services |
Methods in org.apache.xindice.server.services that throw XindiceException | |
void |
SocketServer.setConfig(Configuration config)
|
void |
HTTPServer.setConfig(Configuration config)
|
void |
APIService.setConfig(Configuration config)
|
void |
XindiceService.setConfig(Configuration config)
|
Uses of XindiceException in org.apache.xindice.tools.command |
Methods in org.apache.xindice.tools.command that throw XindiceException | |
java.lang.String |
Command.normalizeXindiceURI(java.lang.String uri)
|
Uses of XindiceException in org.apache.xindice.util |
Subclasses of XindiceException in org.apache.xindice.util | |
class |
ReadOnlyException
A ReadOnlyException is thrown when an Object's property cannot be modified. |
Methods in org.apache.xindice.util that throw XindiceException | |
void |
SimpleConfigurable.setConfig(Configuration config)
|
void |
Configurable.setConfig(Configuration config)
setConfig sets the configuration information for the Configurable object instance. |
void |
ConfigurationCallback.process(Configuration cfg)
|
Uses of XindiceException in org.apache.xindice.xml.dom |
Methods in org.apache.xindice.xml.dom that throw XindiceException | |
static org.w3c.dom.Document |
DOMParser.toDocument(java.io.Reader input)
|
static org.w3c.dom.Document |
DOMParser.toDocument(byte[] xml)
|
static org.w3c.dom.Document |
DOMParser.toDocument(Value value)
|
static org.w3c.dom.Document |
DOMParser.toDocument(org.xml.sax.InputSource source)
|
static org.w3c.dom.Document |
DOMParser.toDocument(java.io.InputStream input)
|
static org.w3c.dom.Document |
DOMParser.toDocument(java.lang.String xml)
|
static byte[] |
DOMCompressor.Compress(org.w3c.dom.Node node,
SymbolTable symbols)
Compress is a convenience method that compresses a Node into a byte array with a single call. |
Constructors in org.apache.xindice.xml.dom that throw XindiceException | |
DOMParser()
|
|
DocumentImpl(org.w3c.dom.Document doc)
|
|
Xindice API | |||||||||
PREV NEXT | FRAMES NO FRAMES |