for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* \AppserverIo\Appserver\Ldap\LdapManagerSettings
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2019 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io/appserver
* @link http://www.appserver.io
*/
namespace AppserverIo\Appserver\Ldap;
use AppserverIo\Appserver\Application\StandardManagerSettings;
* Default settings for the persistence container implementation.
class LdapManagerSettings extends StandardManagerSettings implements LdapManagerSettingsInterface
{
* The default base directory containing additional configuration information.
* @var string
const BASE_DIRECTORY = 'META-INF';
* Initialize the default session settings.
public function __construct()
$this->setBaseDirectory(LdapManagerSettings::BASE_DIRECTORY);
}