Package com.flowable.spring.boot.idm
Class FlowableLdapProperties
java.lang.Object
com.flowable.spring.boot.idm.FlowableLdapProperties
@ConfigurationProperties(prefix="flowable.ldap")
public class FlowableLdapProperties
extends java.lang.Object
- Author:
- Filip Hrisafov
-
Field Summary
Fields Modifier and Type Field Description protected boolean
ignorePartialResultException
Specify whether PartialResultException should be ignored in searches. -
Constructor Summary
Constructors Constructor Description FlowableLdapProperties()
-
Method Summary
Modifier and Type Method Description boolean
isIgnorePartialResultException()
void
setIgnorePartialResultException(boolean ignorePartialResultException)
-
Field Details
-
ignorePartialResultException
protected boolean ignorePartialResultExceptionSpecify whether PartialResultException should be ignored in searches. AD servers typically have a problem with referrals. Normally a referral should be followed automatically, but this does not seem to work with AD servers. The problem manifests itself with a a PartialResultException being thrown when a referral is encountered by the server. Setting this property to true presents a workaround to this problem by causing PartialResultException to be ignored, so that the search method returns normally.
-
-
Constructor Details
-
FlowableLdapProperties
public FlowableLdapProperties()
-
-
Method Details
-
isIgnorePartialResultException
public boolean isIgnorePartialResultException() -
setIgnorePartialResultException
public void setIgnorePartialResultException(boolean ignorePartialResultException)
-