edu.uky.rch.ept.data
Interface IDataAccessMethods

All Superinterfaces:
ICollectionAccessMethods, IConcurrentXMLAccessMethods, IDTDAccessMethods, IGenericResourceAccessMethods, IImageAccessMethods, ITextAccessMethods, IXMLAccessMethods
All Known Subinterfaces:
IDataSourceDriver
All Known Implementing Classes:
DataFactory, DataSourceDriver, Project, Repository

public interface IDataAccessMethods
extends ITextAccessMethods, IDTDAccessMethods, IImageAccessMethods, ICollectionAccessMethods, IXMLAccessMethods, IConcurrentXMLAccessMethods, IGenericResourceAccessMethods

This interface defines constants that are used in the various data access methods. All the methods throw the following exceptions:

Author:
Sandeep Bodapati

Field Summary
static int EOF
           
static short RT_DOCUMENT
          Specifies the return type as Document
static short RT_NODELIST
          Specifies the return type as a List of Nodes
static short RT_STRINGS
          Specifies the return type as an array of Strings
 
Methods inherited from interface edu.uky.rch.ept.data.ITextAccessMethods
getText, insertText, replaceText, storeText
 
Methods inherited from interface edu.uky.rch.ept.data.IDTDAccessMethods
getDTD, storeDTD
 
Methods inherited from interface edu.uky.rch.ept.data.IImageAccessMethods
getImage, storeImage
 
Methods inherited from interface edu.uky.rch.ept.data.ICollectionAccessMethods
createCollection, deleteCollection, getCollectionContents, isCollection, scanCollection
 
Methods inherited from interface edu.uky.rch.ept.data.IXMLAccessMethods
deleteXML, getXML, getXMLDocument, insertXML, queryXML, replaceXML, replaceXMLContent, storeXML, storeXML
 
Methods inherited from interface edu.uky.rch.ept.data.IConcurrentXMLAccessMethods
deleteCXML, getCXML, insertCXML, queryCXML, replaceCXML, replaceCXMLContent, storeCXML
 
Methods inherited from interface edu.uky.rch.ept.data.IGenericResourceAccessMethods
canRead, canWrite, deleteResource, getInputStream, getOutputStream, getOutputStream, renameResource, storeResource
 

Field Detail

EOF

public static final int EOF
See Also:
Constant Field Values

RT_DOCUMENT

public static final short RT_DOCUMENT
Specifies the return type as Document

See Also:
Constant Field Values

RT_NODELIST

public static final short RT_NODELIST
Specifies the return type as a List of Nodes

See Also:
Constant Field Values

RT_STRINGS

public static final short RT_STRINGS
Specifies the return type as an array of Strings

See Also:
Constant Field Values