OSID Logo
OSID Specifications
tracking package
Version 3.1.0
Interfaceosid.tracking.LogEntry
Implementsosid.OsidObject
Used Byosid.tracking.IssueMessagingSession
osid.tracking.LogEntryList
osid.tracking.LogEntryLookupSession
Description

A LogEntry is an entry of an issue.

MethodgetAgentId
Description

Gets the Id of the agent.

Returnosid.id.Id the agent Id
Compliancemandatory This method must be implemented.
MethodgetAgent
Description

Gets the agent.

Returnosid.authentication.Agent the agent
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetIssueId
Description

Gets the Id of the issue of this log entry.

Returnosid.id.Id the issue Id
Compliancemandatory This method must be implemented.
MethodgetIssue
Description

Gets the issue of this log entry.

Returnosid.tracking.Issue the issue
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetDate
Description

Gets the date of this log entry.

Returnosid.calendaring.DateTime the date
Compliancemandatory This method must be implemented.
MethodgetAction
Description

Gets the action of this log entry.

Returnosid.tracking.IssueAction the issue action
Compliancemandatory This method must be implemented.
MethodgetSummary
Description

Gets a summary header for this entry.

Returnosid.locale.DisplayText the summary
Compliancemandatory This method must be implemented.
MethodgetMessage
Description

Gets the text of this entry.

Returnosid.locale.DisplayText the entry text
Compliancemandatory This 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.TypelogEntryRecordType the type of log entry record to retrieve
Returnosid.tracking.records.LogEntryRecord the log entry record
ErrorsNULL_ARGUMENT logEntryRecordType is null
OPERATION_FAILED unable to complete request
UNSUPPORTED hasRecordType(logEntryRecordType) is false
Compliancemandatory This method must be implemented.