com.crystaldecisions.sdk.plugin.admin.jobserveradmin
Interface IJobServerDestination


Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination. See the BusinessObjects Enterprise SDK Java Developer Guide for information on how to programmatically perform server administration tasks using the new Server Intelligence framework.

public interface IJobServerDestination

The IJobServerDestination interface allows you to retrieve the plugin associated with the output destination (FTP, SMTP, or Unmanaged Disk) of a scheduled object as well as enable or disable that destination. The destination plugin is used to set the Job Server's global options for that destination type. For more information see "Selecting a Destination" in the BusinessObjects Enterprise Administrator's Guide.


Method Summary
 java.lang.String getName()
          Deprecated. As of version 12.0.
 java.lang.Object getPluginInterface()
          Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.getConfigGlobalOptions(). See the BusinessObjects Enterprise Developer Guide for information on how to programmatically perform server administration tasks using the new Server Intelligence framework.
 boolean isEnabled()
          Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.getActualStatus().
 void setEnabled(boolean enabled)
          Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.setRequestedStatus(boolean).
 

Method Detail

getName

java.lang.String getName()
                         throws SDKException
Deprecated. As of version 12.0.

Returns the ProgID of the Destination Plugin.

Returns:
A String containing the ProgID of the Destination Plugin.
Throws:
SDKException - This is thrown if the process is unsuccessful.

getPluginInterface

java.lang.Object getPluginInterface()
                                    throws SDKException
Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.getConfigGlobalOptions(). See the BusinessObjects Enterprise Developer Guide for information on how to programmatically perform server administration tasks using the new Server Intelligence framework.

Returns the Destination Plugin interface.

Returns:
An Object containing the Destination Plugin Options interface. This can be cast as a destination specific options interface.
Throws:
SDKException - This is thrown if the process is unsuccessful.
See Also:
IDestinationPlugin

isEnabled

boolean isEnabled()
                  throws SDKException
Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.getActualStatus().

Returns whether the destination is enabled.

Returns:
A boolean specifying whether the destination is enabled.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setEnabled

void setEnabled(boolean enabled)
                throws SDKException
Deprecated. As of version 12.0. Replaced by com.crystaldecisions.sdk.plugin.desktop.server.IServerDestination.setRequestedStatus(boolean).

Sets whether the destination is enabled.

Parameters:
enabled - true if the destination is enabled, false otherwise.
Throws:
SDKException - This is thrown if the process is unsuccessful.