Class Overview
This action class holds information for the QUERY_OVERRIDES
action.
Summary
Public Methods |
List<String>
|
getAddresses()
Get the list of addresses.
|
void
|
setAddresses(List<String> addresses)
Set the list of addresses.
|
[Expand]
Inherited Methods |
From class
com.pnfsoftware.jeb.core.actions.ActionData
String
|
getDescription()
Retrieve the description string provided by the plugins.
|
Object
|
getValue(String key)
Convenience method used to store any object.
|
void
|
setDescription(String description)
Set the description string to be provided to the clients.
|
void
|
setValue(String key, Object value)
Convenience method used to retrieve previously stored objects.
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
com.pnfsoftware.jeb.core.actions.IActionData
abstract
Object
|
getValue(String key)
Convenience method used to store any object.
|
abstract
void
|
setValue(String key, Object value)
Convenience method used to retrieve previously stored objects.
|
|
Public Constructors
public
ActionOverridesData
()
Public Methods
public
List<String>
getAddresses
()
Get the list of addresses. This method is used by clients.
public
void
setAddresses
(List<String> addresses)
Set the list of addresses. This method is used by plugins.
Parameters
addresses |
list of addresses
|