<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\Ldap\Node\Schema\ObjectClass;

use 
Zend\Ldap\Node\Schema;

/**
 * Zend\Ldap\Node\Schema\ObjectClass\ActiveDirectory provides access to the objectClass
 * schema information on an Active Directory server.
 */
class ActiveDirectory extends Schema\AbstractItem implements ObjectClassInterface
{
    
/**
     * Gets the objectClass name
     *
     * @return string
     */
    
public function getName()
    {
        return 
$this->ldapdisplayname[0];
    }

    
/**
     * Gets the objectClass OID
     *
     * @return string
     */
    
public function getOid()
    {

    }

    
/**
     * Gets the attributes that this objectClass must contain
     *
     * @return array
     */
    
public function getMustContain()
    {

    }

    
/**
     * Gets the attributes that this objectClass may contain
     *
     * @return array
     */
    
public function getMayContain()
    {

    }

    
/**
     * Gets the objectClass description
     *
     * @return string
     */
    
public function getDescription()
    {

    }

    
/**
     * Gets the objectClass type
     *
     * @return integer
     */
    
public function getType()
    {

    }

    
/**
     * Returns the parent objectClasses of this class.
     * This includes structural, abstract and auxiliary objectClasses
     *
     * @return array
     */
    
public function getParentClasses()
    {

    }
}