Package eu.tneitzel.rmg.plugin
Interface IArgumentProvider
-
- All Known Implementing Classes:
DefaultProvider
public interface IArgumentProviderThe IArgumentProvider interface is used during rmg's 'call' action to obtain the argument array that should be used for the call. plugins can implement this class to provide custom argument arrays that they want to use during the 'call' operation. The getArgumentArray method is called with the user specified arguments and is expected to return the Object array that should be used for the call. This interface is implemented by rmg's DefaultProvider class by default.- Author:
- Tobias Neitzel (@qtc_de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object[]getArgumentArray(String[] args)Provide an argument array for remote method calls.
-