Class NoChangePhaseConfig


@Deprecated(forRemoval=true, since="1.20.0") public class NoChangePhaseConfig extends PhaseConfig<NoChangePhaseConfig>
Deprecated, for removal: This API element is subject to removal in a future version.
Deprecated on account of deprecating NoChangePhase.
  • Field Details

    • XML_ELEMENT_NAME

      public static final String XML_ELEMENT_NAME
      Deprecated, for removal: This API element is subject to removal in a future version.
      See Also:
  • Constructor Details

    • NoChangePhaseConfig

      public NoChangePhaseConfig()
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • inherit

      public @NonNull NoChangePhaseConfig inherit(@NonNull NoChangePhaseConfig inheritedConfig)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from class: AbstractConfig
      Inherits each property of the inheritedConfig unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).

      After the inheritance, if a property on this AbstractConfig composition is replaced, it should not affect the inherited composition instance.

      Overrides:
      inherit in class PhaseConfig<NoChangePhaseConfig>
      Returns:
      this
    • copyConfig

      public @NonNull NoChangePhaseConfig copyConfig()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from class: AbstractConfig
      Typically implemented by constructing a new instance and calling AbstractConfig.inherit(AbstractConfig) on it.
      Specified by:
      copyConfig in class AbstractConfig<NoChangePhaseConfig>
      Returns:
      new instance
    • visitReferencedClasses

      public void visitReferencedClasses(@NonNull Consumer<Class<?>> classVisitor)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from class: AbstractConfig
      Call the class visitor on each (possibly null) Class instance provided to this config by the user (including those provided in child configs). Required to create the bean factory in Quarkus.
      Specified by:
      visitReferencedClasses in class AbstractConfig<NoChangePhaseConfig>
      Parameters:
      classVisitor - The visitor of classes. Can accept null instances of Class.