Class AuthenticationPluginDescriptor

java.lang.Object
org.nuxeo.ecm.platform.ui.web.auth.service.AuthenticationPluginDescriptor
All Implemented Interfaces:
Descriptor

public class AuthenticationPluginDescriptor extends Object implements Descriptor
  • Field Details

  • Constructor Details

    • AuthenticationPluginDescriptor

      public AuthenticationPluginDescriptor()
  • Method Details

    • getId

      public String getId()
      Description copied from interface: Descriptor
      The descriptor id, descriptors with same id are merged.

      To forbid multiple descriptors use UNIQUE_DESCRIPTOR_ID.

      To forbid merge use a unique value, non-overriden toString() for exemple.

      Specified by:
      getId in interface Descriptor
    • getName

      public String getName()
    • getEnabled

      @Deprecated(since="2025.0", forRemoval=true) public boolean getEnabled()
      Deprecated, for removal: This API element is subject to removal in a future version.
      since 2025.0, use isEnabled() ()} instead
    • isEnabled

      public boolean isEnabled()
    • setEnabled

      public void setEnabled(boolean enabled)
    • getClassName

      public Class<NuxeoAuthenticationPlugin> getClassName()
    • setClassName

      public void setClassName(Class<NuxeoAuthenticationPlugin> className)
    • getNeedStartingURLSaving

      @Deprecated(since="2025.0", forRemoval=true) public boolean getNeedStartingURLSaving()
      Deprecated, for removal: This API element is subject to removal in a future version.
      since 2025.0, use isNeedStartingURLSaving() instead
    • isNeedStartingURLSaving

      public boolean isNeedStartingURLSaving()
    • setNeedStartingURLSaving

      public void setNeedStartingURLSaving(boolean needStartingURLSaving)
    • getParameters

      public Map<String,String> getParameters()
    • setParameters

      public void setParameters(Map<String,String> parameters)
    • getStateful

      @Deprecated(since="2025.0", forRemoval=true) public boolean getStateful()
      Deprecated, for removal: This API element is subject to removal in a future version.
      since 2025.0, use isStateful() instead
    • isStateful

      public boolean isStateful()
    • setStateful

      public void setStateful(boolean stateful)
    • merge

      Description copied from interface: Descriptor
      Returns a descriptor representing other merged into this

      Default implementation returns other.

      Specified by:
      merge in interface Descriptor
      Returns:
      the merged descriptor