com.bankframe.services.cache
Interface JMSCacheEvent

All Superinterfaces:
Serializable
All Known Implementing Classes:
JMSCacheEventImpl

public interface JMSCacheEvent
extends Serializable

This interface should be implemented by all Txn


Field Summary
static int ADD_SINGLE_ENTRY
           
static int MULTIPLE_ENTRY
           
static int REMOVE_ALL
           
static int SINGLE_ENTRY
           
 
Method Summary
 Object getKey()
          Returns the key.
 String getName()
          Returns the name.
 String getNode()
          Returns the node.
 int getType()
          Returns the type.
 Object getValue()
          Returns the value.
 void setKey(Object key)
          Sets the key.
 void setName(String name)
          Sets the name.
 void setNode(String node)
          Sets the node.
 void setType(int type)
          Sets the type.
 void setValue(Object value)
          Sets the value.
 

Field Detail

SINGLE_ENTRY

static final int SINGLE_ENTRY
See Also:
Constant Field Values

MULTIPLE_ENTRY

static final int MULTIPLE_ENTRY
See Also:
Constant Field Values

REMOVE_ALL

static final int REMOVE_ALL
See Also:
Constant Field Values

ADD_SINGLE_ENTRY

static final int ADD_SINGLE_ENTRY
See Also:
Constant Field Values
Method Detail

getKey

Object getKey()
Returns the key.

Returns:
Object

getName

String getName()
Returns the name.

Returns:
String

getType

int getType()
Returns the type.

Returns:
int

getValue

Object getValue()
Returns the value.

Returns:
Object

getNode

String getNode()
Returns the node.

Returns:
Object

setKey

void setKey(Object key)
Sets the key.

Parameters:
key - The key to set

setName

void setName(String name)
Sets the name.

Parameters:
name - The name to set

setType

void setType(int type)
Sets the type.

Parameters:
type - The type to set

setValue

void setValue(Object value)
Sets the value.

Parameters:
value - The value to set

setNode

void setNode(String node)
Sets the node.

Parameters:
node - The node to set


Copyright © 2005, 2007, Oracle. All rights reserved.