com.businessobjects.dsws.reportengine
Class Action

java.lang.Object
  extended bycom.businessobjects.dsws.reportengine.Action
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
Close, Drill, EmbeddedAction, FillDBLogons, FillPassword, FillPrompts, FillQueryContexts, Refresh

public class Action
extends java.lang.Object
implements java.io.Serializable

The Action class is the base class for possible actions that can be performed on the document. Followign are the possible actions you can perform on the document: 1. Refresh, 2. FillContexts, 3. FillPrompts, 4. FillDBLogons 5. Drill, 6. FillContexts, 7. FillPrompts, 8. FillDBLogons

Note: Action must not be used on its own. Use classes inheriting from Action such as Refresh.

Example: Refresh a document.

Action[] actions = new Action[1];
actions[0] = new Refresh();
DocumentInformation boDocInfo = boRepEng.getDocumentInformation( strBODocuid, null, actions, null, retBOData);

See Also:
BICatalog, Document, ReportEngine, DocumentInformation, RetrieveMustFillInfo, Refresh, FillPrompts, Drill, FillPassword, EmbeddedAction, FillDBLogons, FillQueryContext, Navigate, RetrieveData, Serialized Form

Constructor Summary
Action()
          Instantiates a new blank Action object.
 
Method Summary
 boolean equals(java.lang.Object obj)
          Internal Use Only.
static org.apache.axis.encoding.Deserializer getDeserializer(java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType)
          Internal Use Only.
static org.apache.axis.encoding.Serializer getSerializer(java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType)
          Internal Use Only.
static org.apache.axis.description.TypeDesc getTypeDesc()
          Internal Use Only.
 int hashCode()
          Internal Use Only.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Action

public Action()
Instantiates a new blank Action object.

Method Detail

equals

public boolean equals(java.lang.Object obj)

Internal Use Only.


hashCode

public int hashCode()

Internal Use Only.


getTypeDesc

public static org.apache.axis.description.TypeDesc getTypeDesc()

Internal Use Only.


getSerializer

public static org.apache.axis.encoding.Serializer getSerializer(java.lang.String mechType,
                                                                java.lang.Class _javaType,
                                                                javax.xml.namespace.QName _xmlType)

Internal Use Only.


getDeserializer

public static org.apache.axis.encoding.Deserializer getDeserializer(java.lang.String mechType,
                                                                    java.lang.Class _javaType,
                                                                    javax.xml.namespace.QName _xmlType)

Internal Use Only.