com.crystaldecisions.sdk.plugin.admin.auditadmin
Interface IJobServerAuditAdmin


Deprecated. As of version 12.0.

public interface IJobServerAuditAdmin

The IJobServerAuditAdmin interface provides auditing information to the Central Management Server (CMS) regarding the Job server. Use this interface to set which actions you would like to audit. Furthermore, when a new IJobServerAuditAdmin object is created, it supplies its own functionality and inherits the methods that are associated with the IAuditAdmin interface.


Method Summary
 boolean isJobFailed()
          Deprecated. As of version 12.0.
 boolean isJobFailedButRetried()
          Deprecated. As of version 12.0.
 boolean isJobSucceeded()
          Deprecated. As of version 12.0.
 void setJobFailed(boolean value)
          Deprecated. As of version 12.0.
 void setJobFailedButRetried(boolean value)
          Deprecated. As of version 12.0.
 void setJobSucceeded(boolean value)
          Deprecated. As of version 12.0.
 

Method Detail

isJobSucceeded

boolean isJobSucceeded()
                       throws SDKException
Deprecated. As of version 12.0.

Returns a boolean indicating whether the CMS audits jobs that succeeded on the Job Server.

Returns:
A boolean indicating whether the CMS audits jobs that succeeded on the Job Server.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setJobSucceeded

void setJobSucceeded(boolean value)
                     throws SDKException
Deprecated. As of version 12.0.

Sets whether the CMS audits jobs that succeeded on the Job Server.

Parameters:
value - A boolean indicating whether the CMS audits jobs that succeeded on the Job Server.
Throws:
SDKException - This is thrown if the process is unsuccessful.

isJobFailed

boolean isJobFailed()
                    throws SDKException
Deprecated. As of version 12.0.

Returns a boolean indicating whether the CMS audits jobs that failed on the Job Server.

Returns:
A boolean indicating whether the CMS audits jobs that failed on the Job Server.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setJobFailed

void setJobFailed(boolean value)
                  throws SDKException
Deprecated. As of version 12.0.

Sets whether the CMS audits jobs that failed on the Job Server.

Parameters:
value - A boolean indicating whether the CMS audits jobs that failed on the Job Server.
Throws:
SDKException - This is thrown if the process is unsuccessful.

isJobFailedButRetried

boolean isJobFailedButRetried()
                              throws SDKException
Deprecated. As of version 12.0.

Returns a boolean indicating whether the CMS audits jobs that failed on the Job Server, and will be retried again.

Returns:
A boolean indicating whether the CMS audits jobs that failed on the Job Server, and will be retried again.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setJobFailedButRetried

void setJobFailedButRetried(boolean value)
                            throws SDKException
Deprecated. As of version 12.0.

Sets whether the CMS audits jobs that failed on the Job Server, and will be retried again.

Parameters:
value - A boolean indicating whether the CMS audits jobs that failed on the Job Server, and will be retried again.
Throws:
SDKException - This is thrown if the process is unsuccessful.