Home
last modified time | relevance | path

Searched refs:ResultCode (Results 1 – 19 of 19) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientBasicHandler.php17 use FreeDSx\Ldap\Operation\ResultCode; alias
33 ResultCode::SUCCESS,
34 ResultCode::COMPARE_FALSE,
35 ResultCode::COMPARE_TRUE,
36 ResultCode::REFERRAL,
37 ResultCode::SASL_BIND_IN_PROGRESS,
60 if (!$result instanceof LdapResult || $result->getResultCode() === ResultCode::SUCCESS) {
H A DClientSaslBindHandler.php18 use FreeDSx\Ldap\Operation\ResultCode; alias
77 if ($saslResponse->getResultCode() !== ResultCode::SASL_BIND_IN_PROGRESS) {
84 && $response->getResponse()->getResultCode() === ResultCode::SUCCESS
135 … if ($saslResponse->getResultCode() === ResultCode::SUCCESS && $context->hasSecurityLayer()) {
159 if ($response->getResultCode() === ResultCode::SUCCESS) {
163 return $response->getResultCode() !== ResultCode::SASL_BIND_IN_PROGRESS;
H A DClientStartTlsHandler.php15 use FreeDSx\Ldap\Operation\ResultCode; alias
35 if ($response->getResultCode() !== ResultCode::SUCCESS) {
H A DClientReferralHandler.php25 use FreeDSx\Ldap\Operation\ResultCode; alias
82 ResultCode::REFERRAL
145 if ($e->getCode() === ResultCode::REFERRAL) {
159 ), ResultCode::REFERRAL);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerStartTlsHandler.php16 use FreeDSx\Ldap\Operation\ResultCode; alias
50 new LdapResult(ResultCode::PROTOCOL_ERROR),
59 …new LdapResult(ResultCode::OPERATIONS_ERROR, '', 'The current LDAP session is already encrypted.'),
67 new LdapResult(ResultCode::SUCCESS),
H A DServerBindHandler.php17 use FreeDSx\Ldap\Operation\ResultCode; alias
60 ResultCode::INVALID_CREDENTIALS
76 ResultCode::PROTOCOL_ERROR
H A DServerWhoAmIHandler.php16 use FreeDSx\Ldap\Operation\ResultCode; alias
48 new ExtendedResponse(new LdapResult(ResultCode::SUCCESS), null, $userId)
H A DServerSearchHandler.php17 use FreeDSx\Ldap\Operation\ResultCode; alias
57 new SearchResultDone(ResultCode::SUCCESS)
H A DServerDispatchHandler.php15 use FreeDSx\Ldap\Operation\ResultCode; alias
52 ResultCode::NO_SUCH_OPERATION
H A DServerRootDseHandler.php18 use FreeDSx\Ldap\Operation\ResultCode; alias
76 new SearchResultDone(ResultCode::SUCCESS)
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DServerProtocolHandler.php17 use FreeDSx\Ldap\Operation\ResultCode; alias
172 ResultCode::INSUFFICIENT_ACCESS_RIGHTS,
186 ResultCode::PROTOCOL_ERROR
194 ResultCode::PROTOCOL_ERROR
213 ResultCode::AUTH_METHOD_UNSUPPORTED
229 ResultCode::PROTOCOL_ERROR,
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Exception/
H A DOperationException.php13 use FreeDSx\Ldap\Operation\ResultCode; alias
24 …public function __construct(string $message = '', int $code = ResultCode::OPERATIONS_ERROR, \Throw…
H A DReferralException.php14 use FreeDSx\Ldap\Operation\ResultCode; alias
35 parent::__construct($diagnostic, ResultCode::REFERRAL);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DServerBindHandlerFactory.php17 use FreeDSx\Ldap\Operation\ResultCode; alias
43 ResultCode::AUTH_METHOD_UNSUPPORTED
H A DResponseFactory.php30 use FreeDSx\Ldap\Operation\ResultCode; alias
44 …public function getStandardResponse(LdapMessageRequest $message, int $resultCode = ResultCode::SUC…
66 return $this->getExtendedError('Invalid request.', ResultCode::OPERATIONS_ERROR);
H A DClientProtocolHandlerFactory.php16 use FreeDSx\Ldap\Operation\ResultCode; alias
55 …$response instanceof Operation\LdapResult && $response->getResultCode() === ResultCode::REFERRAL) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DProxyRequestHandler.php25 use FreeDSx\Ldap\Operation\ResultCode; alias
105 throw new OperationException('The result was malformed.', ResultCode::PROTOCOL_ERROR);
108 return $response->getResultCode() === ResultCode::COMPARE_TRUE;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php24 use FreeDSx\Ldap\Operation\ResultCode; alias
123 return $response->getResultCode() === ResultCode::COMPARE_TRUE;
156 if ($e->getCode() === ResultCode::NO_SUCH_OBJECT) {
179 ), ResultCode::NO_SUCH_OBJECT);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
H A DResultCode.php18 class ResultCode class