| java.lang.Object org.jboss.ejb.txtimer.TimedObjectId
TimedObjectId | public class TimedObjectId implements Serializable(Code) | | The combined TimedObjectId consists of a String that identifies
the "class" of the TimedObject and optionally an instance primary key object.
When the TimedObject is an EJB deployed on JBoss, the containerId is the JMX
name of the component, and the instancePk is the entity's primary key.
If the component is not an entity, the instancePk should be null.
author: Thomas.Diesler@jboss.org version: $Revision: 57209 $ since: 09-Apr-2004 |
TimedObjectId | public TimedObjectId(ObjectName containerId, Object instancePk)(Code) | | Construct a combined TimedObjectId
Parameters: containerId - The TimedObject identifier Parameters: instancePk - The TimedObject instance identifier, can be null |
TimedObjectId | public TimedObjectId(ObjectName timedObjectId)(Code) | | Construct a TimedObjectId
Parameters: timedObjectId - The TimedObject identifier |
hashCode | public int hashCode()(Code) | | |
parse | public static TimedObjectId parse(String externalForm)(Code) | | Parse the timed object id from external form.
"[id=contatinerId,pk=instancePk]"
|
toExternalForm | public String toExternalForm()(Code) | | Returns the external representation of the TimedObjectId.
"[id=contatinerId,pk=instancePk]"
|
|
|