]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - extlib/libomb/xrds_mapper.php
Merge remote branch 'statusnet/1.0.x' into msn-plugin
[quix0rs-gnu-social.git] / extlib / libomb / xrds_mapper.php
1 <?php
2 /**
3  * This file is part of libomb
4  *
5  * PHP version 5
6  *
7  * LICENSE: This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  * @package OMB
21  * @author  Adrian Lang <mail@adrianlang.de>
22  * @license http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0
23  * @version 0.1a-20090828
24  * @link    http://adrianlang.de/libomb
25  */
26
27 /**
28  * Map XRDS actions to URLs
29  *
30  * This interface specifies classes which write the XRDS file announcing
31  * the OMB server. An instance of an implementing class should be passed to
32  * OMB_Service_Provider->writeXRDS.
33  */
34 interface OMB_XRDS_Mapper
35 {
36     /**
37      * Fetch an URL for a specified action
38      *
39      * Returns the action URL for an action specified by the endpoint URI.
40      *
41      * @param string $action The endpoint URI
42      *
43      * @return string The action URL
44      */
45     public function getURL($action);
46 }
47 ?>