com.bankframe.services.cache
Interface JMSCacheEvent

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
JMSCacheEventImpl

public interface JMSCacheEvent
extends java.io.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
 java.lang.Object getKey()
          Returns the key.
 java.lang.String getName()
          Returns the name.
 java.lang.String getNode()
          Returns the node.
 int getType()
          Returns the type.
 java.lang.Object getValue()
          Returns the value.
 void setKey(java.lang.Object key)
          Sets the key.
 void setName(java.lang.String name)
          Sets the name.
 void setNode(java.lang.String node)
          Sets the node.
 void setType(int type)
          Sets the type.
 void setValue(java.lang.Object value)
          Sets the value.
 

Field Detail

SINGLE_ENTRY

public static final int SINGLE_ENTRY
See Also:
Constant Field Values

MULTIPLE_ENTRY

public static final int MULTIPLE_ENTRY
See Also:
Constant Field Values

REMOVE_ALL

public static final int REMOVE_ALL
See Also:
Constant Field Values

ADD_SINGLE_ENTRY

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

getKey

public java.lang.Object getKey()
Returns the key.

Returns:
Object

getName

public java.lang.String getName()
Returns the name.

Returns:
String

getType

public int getType()
Returns the type.

Returns:
int

getValue

public java.lang.Object getValue()
Returns the value.

Returns:
Object

getNode

public java.lang.String getNode()
Returns the node.

Returns:
Object

setKey

public void setKey(java.lang.Object key)
Sets the key.

Parameters:
key - The key to set

setName

public void setName(java.lang.String name)
Sets the name.

Parameters:
name - The name to set

setType

public void setType(int type)
Sets the type.

Parameters:
type - The type to set

setValue

public void setValue(java.lang.Object value)
Sets the value.


setNode

public void setNode(java.lang.String node)
Sets the node.



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