com.informatica.powercenter.sdk.mapfwk.core
Class OutputSet

java.lang.Object
  extended by com.informatica.powercenter.sdk.mapfwk.core.OutputSet

public class OutputSet
extends java.lang.Object

This class encapsulates the output of a transformation. It could contain a single RowSet or multiple RowSet's depending on the transformation.


Constructor Summary
OutputSet()
          Default constructor
OutputSet(java.util.Vector vObj)
          Initialize the object with a collection of RowSets
 
Method Summary
 java.util.Vector getPortDefs()
          Get the collection of port definitions
 RowSet getRowSet(java.lang.String groupName)
          Get the RowSet using group name
 java.util.Vector getRowSets()
          Get the collection of RowSet objects
 void setPortDefs(java.util.Vector portDefs)
          Set the port definitions
 void setRowSets(java.util.Vector rowSets)
          Set the collection of RowSet objects
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OutputSet

public OutputSet()
Default constructor


OutputSet

public OutputSet(java.util.Vector vObj)
Initialize the object with a collection of RowSets

Parameters:
vObj - Vector of RowSet
Method Detail

getRowSets

public java.util.Vector getRowSets()
Get the collection of RowSet objects

Returns:
Returns the RowSets.

setRowSets

public void setRowSets(java.util.Vector rowSets)
Set the collection of RowSet objects

Parameters:
rowSets - The RowSets to set.

getPortDefs

public java.util.Vector getPortDefs()
Get the collection of port definitions

Returns:
Returns the port definitions.

setPortDefs

public void setPortDefs(java.util.Vector portDefs)
Set the port definitions

Parameters:
portDefs - PortDefs to set.

getRowSet

public RowSet getRowSet(java.lang.String groupName)
Get the RowSet using group name

Parameters:
groupName - group name
Returns:
Returns the RowSet of groupName else return null
See Also:
RowSet