org.enhydra.shark.api.common
Class DeadlineInfo

java.lang.Object
  extended byorg.enhydra.shark.api.common.DeadlineInfo
All Implemented Interfaces:
java.io.Serializable

public final class DeadlineInfo
extends java.lang.Object
implements java.io.Serializable

This class represents the deadline information.

Author:
Sasa Bojanic
See Also:
Serialized Form

Field Summary
 java.lang.String actId
          Activity Id
 java.lang.String exceptionName
          Exception name
 boolean isExecuted
          Is executed
 boolean isSynchronous
          Synchronous deadline.
 java.lang.String procId
          Process Id
 long timeLimit
          Time limit
 
Constructor Summary
DeadlineInfo()
          Creates instance with all object fields initialized to null, and primitive type fields to -1 and false.
DeadlineInfo(java.lang.String _procId, java.lang.String _actId, boolean _isExecuted, long _timeLimit, java.lang.String _exceptionName, boolean _isSynchronous)
          Creates an instance with fields set to the given parameter values.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

procId

public java.lang.String procId
Process Id


actId

public java.lang.String actId
Activity Id


isExecuted

public boolean isExecuted
Is executed


timeLimit

public long timeLimit
Time limit


exceptionName

public java.lang.String exceptionName
Exception name


isSynchronous

public boolean isSynchronous
Synchronous deadline.

Constructor Detail

DeadlineInfo

public DeadlineInfo()
Creates instance with all object fields initialized to null, and primitive type fields to -1 and false.


DeadlineInfo

public DeadlineInfo(java.lang.String _procId,
                    java.lang.String _actId,
                    boolean _isExecuted,
                    long _timeLimit,
                    java.lang.String _exceptionName,
                    boolean _isSynchronous)
Creates an instance with fields set to the given parameter values.

Method Detail

toString

public java.lang.String toString()