Class DelayedInvocation
- java.lang.Object
-
- org.sakaiproject.scheduler.events.hibernate.DelayedInvocation
-
@Entity public class DelayedInvocation extends Object
This is used to read migrate the delayed invocation out when migrating to storing the triggers in quartz.
-
-
Constructor Summary
Constructors Constructor Description DelayedInvocation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getComponent()
String
getContext()
String
getId()
Date
getTime()
void
setComponent(String component)
void
setContext(String context)
void
setId(String id)
void
setTime(Date time)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getTime
public Date getTime()
-
setTime
public void setTime(Date time)
-
getComponent
public String getComponent()
-
setComponent
public void setComponent(String component)
-
getContext
public String getContext()
-
setContext
public void setContext(String context)
-
-