com.businessobjects.dsws.reportengine
Interface NavigateToDataProvider

All Superinterfaces:
Navigate

public interface NavigateToDataProvider
extends Navigate

The NavigateToDataProvider interface is used to navigate from one data provider (query) to another data provider (query).

Example: Navigating to the data provider

 ViewSupport xmlViewSupport = ViewSupport.Factory.newInstance();
 xmlViewSupport.setOutputFormat(OutputFormatType.XML);
 xmlViewSupport.setViewType(ViewType.XML);
 xmlViewSupport.setViewMode(ViewModeType.DATA_PROVIDER);
 RetrieveXMLView retXMLView = RetrieveXMLView.Factory.newInstance();
 retXMLView.setViewSupport(xmlViewSupport);

 RetrieveData retBOData = RetrieveData.Factory.newInstance();
 retBOData.setRetrieveView(retXMLView);

 NavigateToDataProvider nPath = NavigateToDataProvider.Factory.newInstance();
 nPath.setName("Query 2");
 DocumentInformation boDocInfo = boRepEng.getDocumentInformation(strDocid,null,null,nPath,retBOData);
 


Nested Class Summary
static class NavigateToDataProvider.Factory
          A class with methods for creating instances of the NavigateToDataProvider type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 java.lang.String getName()
          Returns the name of the data provider.
 void setName(java.lang.String name)
          Sets the name of the data provider.
 org.apache.xmlbeans.XmlString xgetName()
          Internal Use Only.
 void xsetName(org.apache.xmlbeans.XmlString name)
          Internal Use Only.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type

Internal Use Only.

Method Detail

getName

java.lang.String getName()
Returns the name of the data provider.

Returns:
the name of the data provider

xgetName

org.apache.xmlbeans.XmlString xgetName()

Internal Use Only.


setName

void setName(java.lang.String name)
Sets the name of the data provider.

Parameters:
name - the name of the data provider

xsetName

void xsetName(org.apache.xmlbeans.XmlString name)

Internal Use Only.