setId($id); $this->setTitle($title); } public function getAppUrl() { return $this->appUrl; } public function setAppUrl($url) { $this->url = $url; } public function getBody() { return $this->body; } public function setBody($body) { $this->body = $body; } public function getBodyId() { return $this->bodyId; } public function setBodyId($bodyId) { $this->bodyId = $bodyId; } public function getCollectionIds() { return $this->collectionIds; } public function setCollectionIds($collectionIds) { $this->$collectionIds = $collectionIds; } public function getId() { return $this->id; } public function setId($id) { $this->id = $id; } public function getInReplyTo() { return $this->inReplyTo; } public function setInReplyTo($inReplyTo) { $this->inReplyTo = $inReplyTo; } public function getRecipients() { return $this->recipients; } public function setRecipients($recipients) { $this->recipients = $recipients; } public function getReplies() { return $this->replies; } public function setReplies($replies) { $this->replies = $replies; } public function getStatus() { return $this->status; } public function setStatus($status) { $this->status = $status; } public function getSenderId() { return $this->senderId; } public function setSenderId($senderId) { $this->senderId = $senderId; } public function getTimeSent() { return $this->timeSent; } public function setTimeSent($timeSent) { $this->timeSent = $timeSent; } public function getTitle() { return $this->title; } public function setTitle($title) { $this->title = $title; } public function getTitleId() { return $this->titleId; } public function setTitleId($titleId) { $this->titleId = $titleId; } public function getType() { return $this->type; } public function setType($type) { $this->type = $type; } public function getUpdated() { return $this->updated; } public function setUpdated($updated) { $this->updated = $updated; } /** * Gets the URLs related to the message * @return the URLs related to the person, their webpages, or feeds */ public function getUrls() { return $this->urls; } /** * Sets the URLs related to the message * @param urls the URLs related to the person, their webpages, or feeds */ public function setUrls($urls) { $this->urls = $urls; } /** * TODO implement either a standard 'sanitizing' facility or * define an interface that can be set on this class so * others can plug in their own. * @param htmlStr String to be sanitized. * @return the sanitized HTML String */ public function sanitizeHTML($htmlStr) { return $htmlStr; } }