/**
  * Inform the service about a new notice
  *
  * Sends a notice to the service.
  *
  * @param OMB_Notice $notice The notice
  *
  * @access public
  */
 public function postNotice($notice)
 {
     $params = $notice->asParameters();
     $params['omb_listenee'] = $notice->getAuthor()->getIdentifierURI();
     $this->performOMBAction(OMB_ENDPOINT_POSTNOTICE, $params, $params['omb_listenee']);
 }