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


public interface IFileEvent

The IFileEvent interface allows you to manage the conditions for a file event to occur. With this object you can set the path and name of the file to watch for as well as the name of the Event Server that will be watching for this event. For more information on events see "File-based events" in the BusinessObjects Enterprise Administrator's Guide.


Method Summary
 java.lang.String getFileName()
           Returns the path and name of the file for the event to watch.
 java.lang.String getServerFriendlyName()
           Returns the Event Server that monitors the event.
 void setFileName(java.lang.String newFileName)
           Sets the path and name of the file for the event to watch.
 void setServerFriendlyName(java.lang.String newServerFriendlyName)
           Sets the Event Server that monitors the event.
 

Method Detail

getFileName

public java.lang.String getFileName()

Returns the path and name of the file for the event to watch.

Returns:
A String containing the path and name of the file for the event to watch.

setFileName

public void setFileName(java.lang.String newFileName)

Sets the path and name of the file for the event to watch.

Parameters:
newFileName - A String containing the path and name of the file for the event to watch.

getServerFriendlyName

public java.lang.String getServerFriendlyName()

Returns the Event Server that monitors the event.

Returns:
A String containing the Event Server that monitors the event.

setServerFriendlyName

public void setServerFriendlyName(java.lang.String newServerFriendlyName)

Sets the Event Server that monitors the event.

Parameters:
newServerFriendlyName - A String containing the Event Server that monitors the event.