Class KafkaConfigDescriptor

java.lang.Object
org.nuxeo.runtime.kafka.KafkaConfigDescriptor
All Implemented Interfaces:
Descriptor

public class KafkaConfigDescriptor extends Object implements Descriptor
  • Field Details

  • Constructor Details

    • KafkaConfigDescriptor

      public KafkaConfigDescriptor()
  • 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-overridden toString() for example.

      Specified by:
      getId in interface Descriptor
    • getCopyId

      public String getCopyId()
      Description copied from interface: Descriptor
      Returns the descriptor id to copy for the current descriptor.

      The method returns null by default, this disables the copy mechanism.

      Specified by:
      getCopyId in interface Descriptor
      Returns:
      the descriptor id to copy
      Since:
      2025.18
    • copy

      public Descriptor copy(Descriptor other)
      Specified by:
      copy in interface Descriptor
      Parameters:
      other - the descriptor to copy, its id is the one returned by Descriptor.getCopyId() of the current descriptor
      Returns:
      a descriptor representing other copied into this
      Since:
      2025.18
    • mergeProperties

      protected Properties mergeProperties(Properties source, Properties update)