public function description()
 {
     $desc = "NSSLocalAuthenticator {\n" . "  database:  " . $this->_db . "\n" . parent::description() . "\n" . "}";
     return $desc;
 }
    public function description()
    {
        if (is_array($this->_ldapBase)) {
            $base = '';
            foreach ($this->_ldapBase as $ldapBase) {
                $base .= " {$ldapBase}";
            }
        } else {
            $base = $this->_ldapBase;
        }
        $desc = 'NSSADAuthenticator {
  base-dn: ' . $base . '
  servers: (
';
        foreach ($this->_ldapServers as $ldapServer) {
            $desc .= "              {$ldapServer}\n";
        }
        $desc . '           )
';
        $desc .= parent::description() . '
}';
        return $desc;
    }
 public function description()
 {
     $desc = "NSSIMAPAuthenticator {\n" . "  domain:  " . $this->_imapDomain . "\n" . "  server:  " . $this->_imapServer . "\n" . "  org:     " . $this->_imapOrg . "\n" . parent::description() . "\n" . "}";
     return $desc;
 }
    public function description()
    {
        $desc = 'NSSLDAPAuthenticator {
  base-dn: ' . $this->_ldapBase . '
  servers: (
';
        foreach ($this->_ldapServers as $ldapServer) {
            $desc .= "              {$ldapServer}\n";
        }
        $desc . '           )
';
        $desc .= parent::description() . '
}';
        return $desc;
    }
    public function description()
    {
        return 'NSSStaticAuthenticator {
' . parent::description() . '
}';
    }