Uses of Interface
org.openeai.moa.XmlEnterpriseObject

Packages that use XmlEnterpriseObject
org.openeai.implementations.layouts   
org.openeai.layouts   
org.openeai.moa   
org.openeai.moa.jmsobjects   
org.openeai.moa.objects.resources   
org.openeai.moa.objects.testsuite   
 

Uses of XmlEnterpriseObject in org.openeai.implementations.layouts
 

Methods in org.openeai.implementations.layouts that return XmlEnterpriseObject
 XmlEnterpriseObject SpCallsLayout.getBaselineObject()
           
 

Methods in org.openeai.implementations.layouts with parameters of type XmlEnterpriseObject
 java.lang.Object XpathLayout.buildOutputFromObject(XmlEnterpriseObject xeo)
           
 java.lang.Object XpathLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
           
 void XpathLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
           
 void SpCallsLayout.setBaselineObject(XmlEnterpriseObject xeo)
           
 java.lang.Object SpCallsLayout.buildOutputFromObject(XmlEnterpriseObject xeo)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 java.lang.Object SpCallsLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 void SpCallsLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
          This is the buildObjectFromInput method that all Layout Managers must implement.
 java.lang.Object ResultSetLayout.buildOutputFromObject(XmlEnterpriseObject xeo)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 java.lang.Object ResultSetLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 void ResultSetLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
          This is the buildObjectFromInput method that all Layout Managers must implement.
 java.lang.Object ExtractLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject)
           
 java.lang.Object ExtractLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
           
 void ExtractLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
           
 java.lang.Object ComplexResultSetLayout.buildOutputFromObject(XmlEnterpriseObject xeo)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 java.lang.Object ComplexResultSetLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 void ComplexResultSetLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
          This is the buildObjectFromInput method that all Layout Managers must implement.
 

Uses of XmlEnterpriseObject in org.openeai.layouts
 

Methods in org.openeai.layouts with parameters of type XmlEnterpriseObject
 java.lang.Object XmlLayout.buildOutputFromObject(XmlEnterpriseObject xeo)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 java.lang.Object XmlLayout.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
          This is the buildOutputFromObject method that all Layout Managers must implement.
 void XmlLayout.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject xeo)
          This is the buildObjectFromInput method that all Layout Managers must implement.
protected  int EnterpriseLayoutManagerImpl.getLength(XmlEnterpriseObject xeo, java.lang.String fieldName)
          Convenience method that tells the layout manager implementation how many instances of a given repeatable field exist on the parent object.
protected  java.lang.Object EnterpriseLayoutManagerImpl.getValueFromObject(XmlEnterpriseObject xeo, java.lang.String appName, java.lang.String fieldName)
          Convenience method used by layout manager implementations to retrieve data from a parent object for a particular application.
protected  java.lang.Object EnterpriseLayoutManagerImpl.getValueFromObject(XmlEnterpriseObject xeo, java.lang.String fieldName)
          Returns the value currently held in the parent object for the field passed in.
protected  java.lang.Object EnterpriseLayoutManagerImpl.getValueFromObject(XmlEnterpriseObject xeo, java.lang.String appName, java.lang.String fieldName, java.lang.Object[] parms, java.lang.Class[] parmTypes)
          Convenience method used by layout manager implementations to retrieve data from a repeating field (of type Element or Attribute) on a parent object for a particular application.
protected  java.lang.Object EnterpriseLayoutManagerImpl.getValueFromObject(XmlEnterpriseObject xeo, java.lang.String fieldName, java.lang.Object[] parms, java.lang.Class[] parmTypes)
          Convenience method used by layout manager implementations to retrieve data from a repeating field (of any type) on a parent object.
 void EnterpriseLayoutManager.buildObjectFromInput(java.lang.Object input, XmlEnterpriseObject anXmlEnterpriseObject)
          Method used to build an object from an input.
 java.lang.Object EnterpriseLayoutManager.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject)
          Method used to serialize an object to some output.
 java.lang.Object EnterpriseLayoutManager.buildOutputFromObject(XmlEnterpriseObject anXmlEnterpriseObject, java.lang.String appName)
          Method used to serialize an object to some output for a particular application.
 

Uses of XmlEnterpriseObject in org.openeai.moa
 

Classes in org.openeai.moa that implement XmlEnterpriseObject
 class XmlEnterpriseObjectImpl
          This is the ancestor class of our "xml aware" objects inclued in the Message Object API (MOA).
 

Methods in org.openeai.moa that return XmlEnterpriseObject
 XmlEnterpriseObject XmlEnterpriseObjectImpl.getBaseline()
          Returns the baseline object associated to this object.
 XmlEnterpriseObject XmlEnterpriseObject.getBaseline()
          Returns the baseline object associated to this object.
 

Methods in org.openeai.moa with parameters of type XmlEnterpriseObject
 void XmlEnterpriseObjectImpl.setBaseline(XmlEnterpriseObject baseline)
          Sets the baseline object associated to this object.
 void XmlEnterpriseObjectImpl.initializeChild(XmlEnterpriseObject childXeo)
          This method sets the EnterpriseFields and XML layout manager information on the child object passed in to be that of the current object.
 boolean XmlEnterpriseObjectImpl.equals(XmlEnterpriseObject xeo)
          A convenience method that can be used to compare two Xml aware objects (XmlEnterpriseObjectImpl).
 void XmlEnterpriseObject.setBaseline(XmlEnterpriseObject baseline)
          Sets the baseline object associated to this object.
 boolean XmlEnterpriseObject.equals(XmlEnterpriseObject xeo)
          A convenience method that can be used to compare two Xml aware objects (XmlEnterpriseObjectImpl).
 

Uses of XmlEnterpriseObject in org.openeai.moa.jmsobjects
 

Classes in org.openeai.moa.jmsobjects that implement XmlEnterpriseObject
 class JmsEnterpriseObjectBase
          This is the ancestor of all "message aware" enterprise objects.
 

Methods in org.openeai.moa.jmsobjects that return XmlEnterpriseObject
 XmlEnterpriseObject JmsEnterpriseObjectBase.getXmlEnterpriseObject()
          Helper method that returns this object as an XmlEnterpriseObject.
 XmlEnterpriseObject JmsEnterpriseObjectBase.create(PointToPointProducer producer)
          Create message production.
 XmlEnterpriseObject JmsEnterpriseObjectBase.delete(java.lang.String deleteAction, PointToPointProducer producer)
          Delete message production.
 XmlEnterpriseObject JmsEnterpriseObjectBase.update(PointToPointProducer producer)
          Update message production.
protected  XmlEnterpriseObject JmsEnterpriseObjectBase.instantiate(java.lang.String className)
           
 XmlEnterpriseObject JmsEnterpriseObject.create(PointToPointProducer producer)
          Create message production.
 XmlEnterpriseObject JmsEnterpriseObject.delete(java.lang.String deleteAction, PointToPointProducer producer)
          Delete message production.
 XmlEnterpriseObject JmsEnterpriseObject.update(PointToPointProducer producer)
          Update message production.
 XmlEnterpriseObject JmsEnterpriseObject.getXmlEnterpriseObject()
          Helper method that returns this object as an XmlEnterpriseObject.
 

Methods in org.openeai.moa.jmsobjects with parameters of type XmlEnterpriseObject
protected  void JmsEnterpriseObjectBase.buildQueryMessage(org.jdom.Document queryDoc, XmlEnterpriseObject keyObject)
          Using the current contents of the 'keyObject' passed in along with the 'primed' XML document this method builds the acutal Enterprise Message.
protected abstract  void JmsEnterpriseObjectBase.buildGenerateMessage(org.jdom.Document generateDoc, XmlEnterpriseObject keyObject)
           
 void JmsEnterpriseObjectBase.generateSync(PubSubProducer producer, XmlEnterpriseObject keyObject)
          Generate Sync message production.
 java.util.List JmsEnterpriseObjectBase.generate(XmlEnterpriseObject keyObject, PointToPointProducer producer)
          Generate message production.
 java.util.List JmsEnterpriseObjectBase.query(XmlEnterpriseObject keyObject, PointToPointProducer producer)
          Query message production.
 java.util.List JmsEnterpriseObject.query(XmlEnterpriseObject keyObject, PointToPointProducer producer)
          Query message production.
 java.util.List JmsEnterpriseObject.generate(XmlEnterpriseObject keyObject, PointToPointProducer producer)
          Generate message production.
 void JmsEnterpriseObject.generateSync(PubSubProducer producer, XmlEnterpriseObject keyObject)
          Generate Sync message production.
 

Uses of XmlEnterpriseObject in org.openeai.moa.objects.resources
 

Classes in org.openeai.moa.objects.resources that implement XmlEnterpriseObject
 class Authentication
          A Class that wraps the Authentication element as specified in the OpenEAI protocol.
 class ControlAreaReply
          A Class that wraps the ControlAreaReply element as specified in the OpenEAI protocol.
 class ControlAreaRequest
          A Class that wraps the ControlAreaRequest element as specified in the OpenEAI protocol.
 class ControlAreaSync
          A Class that wraps the ControlAreaReply element as specified in the OpenEAI protocol.
 class Date
          A Class that wraps the Date element as specified in the OpenEAI protocol.
 class Datetime
          A Class that wraps the Datetime element as specified in the OpenEAI protocol.
 class Error
          A Class that wraps the Error element as specified in the OpenEAI protocol.
 class ExpectedReplyFormat
          A Class that wraps the ExpectedReplyFormat element as specified in the OpenEAI protocol.
 class MessageId
          A Class that wraps the MessageId element as specified in the OpenEAI protocol.
 class MessageSeries
          A Class class.
 class Predecessor
          A Class class.
 class ProcessedMessageId
          A Class that wraps the ProcessedMessageId element as specified in the OpenEAI protocol.
 class Result
          A Class that wraps the Result element as specified in the OpenEAI protocol.
 class Sender
          A Class that wraps the Sender element as specified in the OpenEAI protocol.
 class SourceInfo
          A Class that wraps the SourceInfo element as specified in the OpenEAI protocol.
 class TargetInfo
          A Class that wraps the SourceInfo element as specified in the OpenEAI protocol.
 

Uses of XmlEnterpriseObject in org.openeai.moa.objects.testsuite
 

Classes in org.openeai.moa.objects.testsuite that implement XmlEnterpriseObject
 class Failure
          A Class that wraps the TestStatus element as specified in the OpenEAI TestSuite definition.
 class Success
          A Class that wraps the TestStatus element as specified in the OpenEAI TestSuite definition.
 class TestCaseSummary
          A Class that wraps the TestSuiteSummary element as specified in the OpenEAI TestSuiteSummary definition.
 class TestId
          A Class that wraps the TestId element as specified in the OpenEAI protocol.
 class TestResult
          A Class that wraps the SourceInfo element as specified in the OpenEAI protocol.
 class TestSeriesSummary
          A Class that wraps the TestSuiteSummary element as specified in the OpenEAI TestSuiteSummary definition.
 class TestStatus
          A Class that wraps the TestStatus element as specified in the OpenEAI TestSuite definition.
 class TestStepSummary
          A Class that wraps the TestSuiteSummary element as specified in the OpenEAI TestSuiteSummary definition.
 class TestSuiteSummary
          A Class that wraps the TestSuiteSummary element as specified in the OpenEAI TestSuiteSummary definition.
 



Copyright © 2002, OpenEAI Software Foundation