. * * @package OMB * @author Adrian Lang * @license http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0 * @version 0.1a-20090828 * @link http://adrianlang.de/libomb */ /** * Map XRDS actions to URLs * * This interface specifies classes which write the XRDS file announcing * the OMB server. An instance of an implementing class should be passed to * OMB_Service_Provider->writeXRDS. */ interface OMB_XRDS_Mapper { /** * Fetch an URL for a specified action * * Returns the action URL for an action specified by the endpoint URI. * * @param string $action The endpoint URI * * @return string The action URL */ public function getURL($action); } ?>