Interface IRemoteCallParameter
- 
- All Known Implementing Classes:
- RemoteCallParameter
 
 public interface IRemoteCallParameterA remote call parameter, with a String name and Object value.- Since:
- 4.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Get the name of the remote call parameter.ObjectgetValue()Get the value associated with this remote call parameter.
 
- 
- 
- 
Method Detail- 
getNameString getName() Get the name of the remote call parameter. Should not benull.- Returns:
- String name for the parameter.  Should not be null.
 
 - 
getValueObject getValue() Get the value associated with this remote call parameter. May benull.- Returns:
- Object value associated with the name given above.
 
 
- 
 
-