Class MappingParameters
- java.lang.Object
-
- org.pentaho.di.trans.steps.mapping.MappingParameters
-
-
Constructor Summary
Constructors Constructor Description MappingParameters()
MappingParameters(Repository rep, org.pentaho.di.repository.ObjectId id_step)
MappingParameters(Node paramNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
String[]
getInputField()
String[]
getVariable()
String
getXML()
boolean
isInheritingAllVariables()
void
saveRep(Repository rep, org.pentaho.metastore.api.IMetaStore metaStore, org.pentaho.di.repository.ObjectId id_transformation, org.pentaho.di.repository.ObjectId id_step)
void
setInheritingAllVariables(boolean inheritingAllVariables)
void
setInputField(String[] inputField)
void
setVariable(String[] variable)
-
-
-
Field Detail
-
XML_TAG
public static final String XML_TAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MappingParameters
public MappingParameters()
-
MappingParameters
public MappingParameters(Node paramNode)
-
MappingParameters
public MappingParameters(Repository rep, org.pentaho.di.repository.ObjectId id_step) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
-
Method Detail
-
getXML
public String getXML()
-
saveRep
public void saveRep(Repository rep, org.pentaho.metastore.api.IMetaStore metaStore, org.pentaho.di.repository.ObjectId id_transformation, org.pentaho.di.repository.ObjectId id_step) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
getInputField
public String[] getInputField()
- Returns:
- the inputField
-
setInputField
public void setInputField(String[] inputField)
- Parameters:
inputField
- the inputField to set
-
getVariable
public String[] getVariable()
- Returns:
- the variable
-
setVariable
public void setVariable(String[] variable)
- Parameters:
variable
- the variable to set
-
isInheritingAllVariables
public boolean isInheritingAllVariables()
- Returns:
- the inheritingAllVariables
-
setInheritingAllVariables
public void setInheritingAllVariables(boolean inheritingAllVariables)
- Parameters:
inheritingAllVariables
- the inheritingAllVariables to set
-
-