| org.apache.turbine.om.Retrievable
Retrievable | public interface Retrievable (Code) | | This interface specifies methods for uniquely identifying an object.
author: John D. McNally version: $Id: Retrievable.java 534527 2007-05-02 16:10:59Z tv $ |
Method Summary | |
String | getQueryKey() get an id that differentiates this object from others
of its class. | void | setQueryKey(String key) set an id that differentiates this object from others
of its class. |
getQueryKey | String getQueryKey()(Code) | | get an id that differentiates this object from others
of its class.
The id value |
setQueryKey | void setQueryKey(String key) throws Exception(Code) | | set an id that differentiates this object from others
of its class.
Parameters: key - The new id value throws: Exception - A problem occured while setting the id. |
|
|