Uses of Interface
com.ibm.di.parser.ParserInterface

Packages that use ParserInterface
com.ibm.di.connector Provides classes for the Directory Integrator's connectors. 
com.ibm.di.fc Provides classes for the Directory Integrator's function components. 
com.ibm.di.function Provides useful functions for the Tivoli Directory Integrator. 
com.ibm.di.osgi   
com.ibm.di.parser Provides classes for the Directory Integrator's parsers. 
com.ibm.di.parser.xml Provides classes for the XML 2 parser. 
 

Uses of ParserInterface in com.ibm.di.connector
 

Methods in com.ibm.di.connector that return ParserInterface
 ParserInterface Connector.getParser()
          Returns the parser interface used by this connector.
 

Methods in com.ibm.di.connector with parameters of type ParserInterface
 void Connector.setParser(ParserInterface parser)
          Sets the connector's parser.
 

Uses of ParserInterface in com.ibm.di.fc
 

Methods in com.ibm.di.fc that return ParserInterface
 ParserInterface ParserFC.getParser()
          This method provides access to the ParserInterface implementation used internally.
 

Uses of ParserInterface in com.ibm.di.function
 

Methods in com.ibm.di.function that return ParserInterface
 ParserInterface UserFunctions.getParser(String name)
          Load a parser Interface from the current Config.
static ParserInterface SystemFunctions.loadParser(ParserConfig config)
           
static ParserInterface SystemFunctions.loadParser(String name)
           
static ParserInterface SystemFunctions.loadParser(String name, RSInterface server)
           
 

Uses of ParserInterface in com.ibm.di.osgi
 

Methods in com.ibm.di.osgi that return ParserInterface
 ParserInterface ConnectorDelegate.getParser()
           
 

Methods in com.ibm.di.osgi with parameters of type ParserInterface
 void ConnectorDelegate.setParser(ParserInterface parser)
           
 

Uses of ParserInterface in com.ibm.di.parser
 

Classes in com.ibm.di.parser that implement ParserInterface
 class CBEParser
          A class that reads and writes CBE objects in XML format.
 class CSVParser
          A class reading and writing Entries in a simple one-line-per-Entry format.
 class DSMLParser
          The DSML Parser reads and writes XML documents.
 class Dsmlv2Parser
          A TDI Parser class for reading and writing Entries in DSMLv2 format
 class FixedRecordParser
          The Fixed Parser reads and writes fixed length text records.
 class HTTPParser
          The HTTP Parser interprets a byte stream according to the HTTP specification.
 class IdMLParser
          The Parser used to parse IdML XML documents (or books).
 class JSONParser
           
 class LDIFParser
          The LDIF Parser reads and writes LDIF style data.
 class LineReader
          The Line Reader Parser reads single lines of data.
 class ParserImpl
          The ParserImpl class provides the base class for parser implementations.
 class ScriptParser
          To operate, a Script Parser must implement a few functions.
 class SimpleParser
          A class reading and writing dsEntries in a simple one-line-per-attribute format.
 class SOAPParser
          The SOAP Parser reads and writes SOAP XML documents.
 class SPMLv2Parser
          A TDI Parser class for reading and writing Entries in SPMLv2 DSMLv2 Profile format.
 class XMLParser
          A class reading and writing Entries in XML format.
 class XMLSaxParser
          A class reading Entries in XML format.
 class XSLbasedXMLParser
          A class reading and writing Entries in XML format.
 

Methods in com.ibm.di.parser that return ParserInterface
 ParserInterface ParserInterface.getParser()
          Gets the parser attribute of the ParserInterface object.
 ParserInterface ParserImpl.getParser()
          Return the chained parser (future implementation).
 

Methods in com.ibm.di.parser with parameters of type ParserInterface
 void ParserInterface.setParser(ParserInterface parser)
          Sets the parser attribute of the ParserInterface object.
 void ParserImpl.setParser(ParserInterface parser)
          Set the chained parser (future implementation).
 

Uses of ParserInterface in com.ibm.di.parser.xml
 

Classes in com.ibm.di.parser.xml that implement ParserInterface
 class XMLParser2
          The Parser used to parse XML documents using the XLXP implementation of the StAX XML Parser.