FileDocCategorySizeDatePackage
TimerPrimaryKey.javaAPI DocGlassfish v2 API2608Fri May 04 22:32:58 BST 2007com.sun.ejb.containers

TimerPrimaryKey

public class TimerPrimaryKey extends Object implements Serializable

Fields Summary
public String
timerId
Constructors Summary
public TimerPrimaryKey()

public TimerPrimaryKey(String pk)

        timerId = pk;
    
Methods Summary
public booleanequals(java.lang.Object other)

	if ( other instanceof TimerPrimaryKey ) {
            TimerPrimaryKey tpk = (TimerPrimaryKey) other;
	    return (tpk.timerId.equals(timerId));
        }
	return false;
    
public java.lang.StringgetTimerId()

        return  timerId;
    
public inthashCode()

	return timerId.hashCode();
    
public java.lang.StringtoString()

	return timerId;