User guide

3-121
Cisco Transport Manager Release 9.2 GateWay/CORBA User Guide and Programmer Manual
OL-20937-01
Chapter 3 Using CTM GateWay/CORBA Interfaces
3.8.38 getAllSoftwareDownloadJobs
Throws
globaldefs::ProcessingFailureException
EXCPT_INTERNAL_ERROR - Raised in case of nonspecific EMS internal failure.
EXCPT_ENTITY_NOT_FOUND - Raised when managedElementName references an ME
object that does not exist.
EXCPT_INVALID_INPUT - Raised if managedElementName does not reference a
managed element.
EXCPT_NE_COMM_LOSS - Raised when communication to the managed element is lost.
EXCPT_TOO_MANY_OPEN_ITERATORS - Raised when the EMS reaches the maximum number of
iterators that it can support.
Compliance
TMF-defined.
3.8.38 getAllSoftwareDownloadJobs
Synopsis
void getAllSoftwareDownloadJobs(
in unsigned long how_many,
out JobMonitorList_T jobList)
raises(globaldefs::ProcessingFailureException);
Description
This interface retrieves the status of all scheduled and completed software download jobs.
Parameters
typedef sequence<JobMonitorData_T> JobMonitorList_T;
struct JobMonitorData_T{
unsigned long jobId;
unsigned long taskId;
string taskType;
string taskOwner;
string neId;
string taskStatus;
string creationTime;
string scheduledTime;
string startTime;
string endTime;
string displayInformation;
string userComments;
string additionalComments;
};
Name Type Input/Output Description
how_many unsigned long In Number of download jobs to retrieve.
jobList JobMonitorList_T Out List of jobs scheduled (see the definition that follows this table).