Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
getdefaultname
getdefaultname

public String getDefaultName()

Use this method to define the name of the step. This name will be displayed in the Step List (left panel) of the Transformation Flow Builder.

Example:

 

Code Block
languagejava
themeEclipse
@Override
public String getDefaultName() {      	
    return "Append Number";
}

 

 

Styleclass
ClasstopLink

top



 

Anchor
getdefaultdescription
getdefaultdescription

public String getDefaultDescription()

Define a description of the step. This will be displayed in the Step List (left panel) of the Transformation Flow Builder.

 

Example:

 

Code Block
languagejava
themeEclipse
@Override
public String getDefaultDescription() {
	return "Append a number to the data in a field";
}

 

 

Styleclass
ClasstopLink

top

 


 

Anchor
stepcategory
stepcategory

public ETLStepCategory getStepCategory()

Specify which category the step should appear under. Available categories are listed in enum ETLStepCategory.

Example:

 

Code Block
languagejava
themeEclipse
@Override
public ETLStepCategory getStepCategory() {
	return ETLStepCategory.TRANSFORM;
}

 

 

Styleclass
ClasstopLink

top