* @category Horde * @copyright 2013-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ interface IMP_Compose_Attachment_Linked { /** * Retrieve the attachment's metadata. * * @return IMP_Compose_Attachment_Linked_Metadata Metadata object. */ public function getMetadata(); /** * Save the attachment's metadata. * * @param IMP_Compose_Attachment_Linked_Metadata $md Metadata object to * save. If null, * deletes entry. */ public function saveMetadata($md = null); }