OSID Logo
OSID Specifications
forum package
Version 3.1.0
Interfaceosid.forum.Reply
Implementsosid.OsidObject
osid.Containable
osid.Subjugateable
Used Byosid.forum.ReplyAdminSession
osid.forum.ReplyList
osid.forum.ReplyLookupSession
Description

A Reply is a response to a Post or another Reply.

MethodgetPostId
Description

Gets the Id of the original top level post for this reply.

Returnosid.id.Id the post Id
Compliancemandatory This method must be implemented.
MethodgetPost
Description

Gets the original top level post.

Returnosid.forum.Post the post
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetReplyIds
Description

Gets the Ids of the replies to this rpely.

Returnosid.id.IdList the reply Ids
Compliancemandatory This method must be implemented.
MethodgetReplies
Description

Gets the replies to this reply.

Returnosid.forum.ReplyList the replies
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetTimestamp
Description

Gets the time of this entry.

Returnosid.calendaring.DateTime the time
Compliancemandatory This method must be implemented.
MethodgetPosterId
Description

Gets the poster resource Id of this entry.

Returnosid.id.Id the poster resource Id
Compliancemandatory This method must be implemented.
MethodgetPoster
Description

Gets the posting of this entry.

Returnosid.resource.Resource the poster resource
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetPostingAgentId
Description

Gets the posting Id of this entry.

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

Gets the posting of this entry.

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

Gets the subject line of this entry.

Returnosid.locale.DisplayText the subject
Compliancemandatory This method must be implemented.
MethodgetText
Description

Gets the text of the entry.

Returnosid.locale.DisplayText the entry text
Compliancemandatory This method must be implemented.
MethodgetReplyRecord
Description

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

Parametersosid.type.TypereplyRecordType the type of reply record to retrieve
Returnosid.forum.records.ReplyRecord the reply record
ErrorsNULL_ARGUMENT replyRecordType is null
OPERATION_FAILED unable to complete request
UNSUPPORTED hasRecordType(replyRecordType) is false
Compliancemandatory This method must be implemented.