1: <?php
2: /**
3: * Provides information about an invited resource.
4: *
5: * PHP version 5
6: *
7: * @category Horde
8: * @package Itip
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/lgpl21 LGPL
11: * @link http://pear.horde.org/index.php?package=Itip
12: */
13:
14: /**
15: * Provides information about an invited resource.
16: *
17: * Copyright 2010 Kolab Systems AG
18: *
19: * See the enclosed file COPYING for license information (LGPL). If you did not
20: * receive this file, see
21: * {@link http://www.horde.org/licenses/lgpl21 LGPL}.
22: *
23: * @category Horde
24: * @package Itip
25: * @author Gunnar Wrobel <wrobel@pardus.de>
26: * @license http://www.horde.org/licenses/lgpl21 LGPL
27: * @link http://pear.horde.org/index.php?package=Itip
28: */
29: interface Horde_Itip_Resource
30: {
31: /**
32: * Retrieve the mail address of the resource.
33: *
34: * @return string The mail address.
35: */
36: public function getMailAddress();
37:
38: /**
39: * Retrieve the reply-to address for the resource.
40: *
41: * @return string The reply-to address.
42: */
43: public function getReplyTo();
44:
45: /**
46: * Retrieve the common name of the resource.
47: *
48: * @return string The common name.
49: */
50: public function getCommonName();
51:
52: /**
53: * Retrieve the "From" address for this resource.
54: *
55: * @return string The "From" address.
56: */
57: public function getFrom();
58: }