Package org.pentaho.di.trans
Class TransConfiguration
- java.lang.Object
-
- org.pentaho.di.trans.TransConfiguration
-
public class TransConfiguration extends Object
-
-
Constructor Summary
Constructors Constructor Description TransConfiguration(TransMeta transMeta, TransExecutionConfiguration transExecutionConfiguration)
TransConfiguration(Node configNode)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransConfiguration
fromXML(String xml)
TransExecutionConfiguration
getTransExecutionConfiguration()
TransMeta
getTransMeta()
String
getXML()
void
setTransExecutionConfiguration(TransExecutionConfiguration transExecutionConfiguration)
void
setTransMeta(TransMeta transMeta)
-
-
-
Field Detail
-
XML_TAG
public static final String XML_TAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TransConfiguration
public TransConfiguration(TransMeta transMeta, TransExecutionConfiguration transExecutionConfiguration)
- Parameters:
transMeta
-transExecutionConfiguration
-
-
TransConfiguration
public TransConfiguration(Node configNode) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
-
Method Detail
-
getXML
public String getXML() throws IOException, org.pentaho.di.core.exception.KettleException
- Throws:
IOException
org.pentaho.di.core.exception.KettleException
-
fromXML
public static final TransConfiguration fromXML(String xml) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
getTransExecutionConfiguration
public TransExecutionConfiguration getTransExecutionConfiguration()
- Returns:
- the transExecutionConfiguration
-
setTransExecutionConfiguration
public void setTransExecutionConfiguration(TransExecutionConfiguration transExecutionConfiguration)
- Parameters:
transExecutionConfiguration
- the transExecutionConfiguration to set
-
getTransMeta
public TransMeta getTransMeta()
- Returns:
- the transMeta
-
setTransMeta
public void setTransMeta(TransMeta transMeta)
- Parameters:
transMeta
- the transMeta to set
-
-