Package org.alfresco.util
Interface TriggerBeanSPI
-
- All Known Implementing Classes:
TriggerBean
public interface TriggerBeanSPI
- Author:
- Andy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getRepeatCount()
long
getRepeatInterval()
long
getStartDelay()
void
setRepeatCount(int repeatCount)
void
setRepeatInterval(long repeatInterval)
void
setRepeatIntervalMinutes(long repeatIntervalMinutes)
void
setStartDelay(long startDelay)
void
setStartDelayMinutes(long startDelayMinutes)
-
-
-
Method Detail
-
getRepeatCount
int getRepeatCount()
- Returns:
- int
-
setRepeatCount
void setRepeatCount(int repeatCount)
- Parameters:
repeatCount
- int
-
getRepeatInterval
long getRepeatInterval()
- Returns:
- long
-
setRepeatInterval
void setRepeatInterval(long repeatInterval)
- Parameters:
repeatInterval
- long
-
setRepeatIntervalMinutes
void setRepeatIntervalMinutes(long repeatIntervalMinutes)
- Parameters:
repeatIntervalMinutes
- long
-
getStartDelay
long getStartDelay()
- Returns:
- long
-
setStartDelay
void setStartDelay(long startDelay)
- Parameters:
startDelay
- long
-
setStartDelayMinutes
void setStartDelayMinutes(long startDelayMinutes)
- Parameters:
startDelayMinutes
- long
-
-