Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Ldap / Node / Schema / ObjectClass / ObjectClassInterface.php
blobed354d9e2264c6b2354098a4eacaf643b0c38eb4
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Ldap\Node\Schema\ObjectClass;
12 /**
13 * This class provides a contract for schema objectClasses.
15 interface ObjectClassInterface
17 /**
18 * Gets the objectClass name
20 * @return string
22 public function getName();
24 /**
25 * Gets the objectClass OID
27 * @return string
29 public function getOid();
31 /**
32 * Gets the attributes that this objectClass must contain
34 * @return array
36 public function getMustContain();
38 /**
39 * Gets the attributes that this objectClass may contain
41 * @return array
43 public function getMayContain();
45 /**
46 * Gets the objectClass description
48 * @return string
50 public function getDescription();
52 /**
53 * Gets the objectClass type
55 * @return int
57 public function getType();
59 /**
60 * Returns the parent objectClasses of this class.
61 * This includes structural, abstract and auxiliary objectClasses
63 * @return array
65 public function getParentClasses();