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)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ignorePartialResultException

      protected boolean ignorePartialResultException
      Specify 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

  • Method Details