OSID Logo
OSID Specifications
tracking package
Version 3.0.0
Release Candidate Preview
Interfaceosid.tracking.LogEntry
Implementsosid.OsidObject
Description

A LogEntry is an entry of an issue.

MethodgetAgentId
Description

Gets the Id of the agent.

Returnosid.id.Idthe agent Id
CompliancemandatoryThis method must be implemented.
MethodgetAgent
Description

Gets the agent.

Returnosid.authentication.Agentthe agent
ErrorsOPERATION_FAILEDunable to complete request
CompliancemandatoryThis method must be implemented.
MethodgetIssueId
Description

Gets the Id of the issue of this log entry.

Returnosid.id.Idthe issue Id
CompliancemandatoryThis method must be implemented.
MethodgetIssue
Description

Gets the issue of this log entry.

Returnosid.tracking.Issuethe issue
ErrorsOPERATION_FAILEDunable to complete request
CompliancemandatoryThis method must be implemented.
MethodgetDate
Description

Gets the date of this log entry.

Returnosid.calendaring.DateTimethe date
CompliancemandatoryThis method must be implemented.
MethodgetAction
Description

Gets the action of this log entry.

Returnosid.tracking.IssueActionthe issue action
CompliancemandatoryThis method must be implemented.
MethodgetSummary
Description

Gets a summary header for this entry.

Returnosid.locale.DisplayTextthe summary
CompliancemandatoryThis method must be implemented.
MethodgetMessage
Description

Gets the text of this entry.

Returnosid.locale.DisplayTextthe entry text
CompliancemandatoryThis method must be implemented.
MethodgetLogEntryRecord
Description

Gets the log entry record corresponding to the given LogEntry record Type. This method is used to retrieve an object implementing the requested record. The logEntryRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(logEntryRecordType) is true .

Parametersosid.type.TypelogEntryRecordTypethe type of log entry record to retrieve
Returnosid.tracking.records.LogEntryRecordthe log entry record
ErrorsNULL_ARGUMENT logEntryRecordType is null
OPERATION_FAILEDunable to complete request
UNSUPPORTED hasRecordType(logEntryRecordType) is false
CompliancemandatoryThis method must be implemented.