1<?php
2/**
3 * The "modifyTimestamp" attribute.
4 *
5 * PHP version 5
6 *
7 * @category Kolab
8 * @package  Kolab_Server
9 * @author   Gunnar Wrobel <wrobel@pardus.de>
10 * @license  http://www.horde.org/licenses/lgpl21 LGPL 2.1
11 * @link     http://pear.horde.org/index.php?package=Kolab_Server
12 */
13
14/**
15 * The "modifyTimestamp" attribute.
16 *
17 * Copyright 2008-2016 Horde LLC (http://www.horde.org/)
18 *
19 * See the enclosed file COPYING for license information (LGPL). If you
20 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
21 *
22 * @category Kolab
23 * @package  Kolab_Server
24 * @author   Gunnar Wrobel <wrobel@pardus.de>
25 * @license  http://www.horde.org/licenses/lgpl21 LGPL 2.1
26 * @link     http://pear.horde.org/index.php?package=Kolab_Server
27 */
28class Horde_Kolab_Server_Object_Attribute_Modifytimestamp
29extends Horde_Kolab_Server_Object_Attribute_External
30{
31    /** The attribute name */
32    const NAME = 'modifyTimestamp';
33
34    /**
35     * Constructor
36     *
37     * @param Horde_Kolab_Server_Object    $object    The object this attribute
38     *                                                belongs to.
39     * @param Horde_Kolab_Server_Composite $composite The link to the server.
40     */
41    public function __construct(
42        Horde_Kolab_Server_Object $object,
43        Horde_Kolab_Server_Composite $composite
44    ) {
45        parent::__construct($object, $composite, self::NAME);
46    }
47}