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 / AttributeType / AttributeTypeInterface.php
blob18736e9d576db92dc06189ea842c9d86dc404d4d
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\AttributeType;
12 /**
13 * This class provides a contract for schema attribute-types.
15 interface AttributeTypeInterface
17 /**
18 * Gets the attribute name
20 * @return string
22 public function getName();
24 /**
25 * Gets the attribute OID
27 * @return string
29 public function getOid();
31 /**
32 * Gets the attribute syntax
34 * @return string
36 public function getSyntax();
38 /**
39 * Gets the attribute maximum length
41 * @return int|null
43 public function getMaxLength();
45 /**
46 * Returns if the attribute is single-valued.
48 * @return bool
50 public function isSingleValued();
52 /**
53 * Gets the attribute description
55 * @return string
57 public function getDescription();