com.crystaldecisions.sdk.plugin.desktop.event
Interface IScheduleEvent


public interface IScheduleEvent

The IScheduleEvent interface allows you to set the criteria for triggering the event based on the results of a previously scheduled report. For more information on events see "Schedule-based events" in the BusinessObjects Enterprise Administrator's Guide.


Field Summary
static int BOTH
           This constant specifies the event is based on schedule success or schedule failure.
static int FAILURE
           This constant specifies the event is based on schedule failure.
static int SUCCESS
           This constant specifies the event is based on schedule success.
 
Method Summary
 int getDependencyType()
           Returns the specific schedule result to trigger the event.
 void setDependencyType(int newDependencyType)
           Sets the specific schedule result to trigger the event.
 

Field Detail

FAILURE

public static final int FAILURE

This constant specifies the event is based on schedule failure.

See Also:
Constant Field Values

SUCCESS

public static final int SUCCESS

This constant specifies the event is based on schedule success.

See Also:
Constant Field Values

BOTH

public static final int BOTH

This constant specifies the event is based on schedule success or schedule failure.

See Also:
Constant Field Values
Method Detail

getDependencyType

public int getDependencyType()

Returns the specific schedule result to trigger the event.

Returns:
An int specifying the specific schedule result to trigger the event.

setDependencyType

public void setDependencyType(int newDependencyType)

Sets the specific schedule result to trigger the event.

Parameters:
newDependencyType - An int specifying the specific schedule result to trigger the event.