public interface StepParameters
The Java? Plugin configuration services are utilized to discover and set named parameters required by the Java? Plugin implementation.
During discovery, the set of named parameters are retrieved via calls to
getParameterCount()
and getParameterName()
.
The fetched parameters are displayed in the Parameters
grid during
the Java? Plugin properties discovery.
When previewing and executing the Java? Plugin, the named parameters values
are communicated to the plugin instance via
setParameterValue()
.
Modifier and Type | Method and Description |
---|---|
int |
getParameterCount()
Return the number of parameters this step requires.
|
java.lang.String |
getParameterName(int index)
Get the name of a parameter required by this step.
|
void |
setParameterValue(int index,
java.lang.String value)
Set the value of a parameter required by this step.
|
int getParameterCount()
java.lang.String getParameterName(int index) throws java.lang.IndexOutOfBoundsException
index
- The 0-based index of the parameter name to retrievejava.lang.IndexOutOfBoundsException
- if the index argument is out of boundsvoid setParameterValue(int index, java.lang.String value) throws java.lang.IndexOutOfBoundsException, javax.crypto.IllegalBlockSizeException, java.io.IOException
index
- The 0-based index of the parametervalue
- The value of the parameterjava.lang.IndexOutOfBoundsException
- if the index argument is out of boundsjava.io.IOException
javax.crypto.IllegalBlockSizeException
Copyright © 2012 SAS Institute Inc. All Rights Reserved.