Class FixDescriptor


  • public final class FixDescriptor
    extends Object
    This descriptor contains data being provided by the IFix during the IFix.onRegistration(FixDescriptor) fix initialization cycle. The fix could provide additional components, like context factories and change processors
    • Constructor Detail

      • FixDescriptor

        public FixDescriptor()
    • Method Detail

      • setContextFactory

        public void setContextFactory​(IFixContextFactory<? extends IFixContext> contextFactory)
        Sets the quick fix context factory
        Parameters:
        contextFactory - the context factory, cannot be null
      • getContextFactory

        public IFixContextFactory<? extends IFixContext> getContextFactory()
        Provides the context factory
        Returns:
        the contextFactory, never null
      • setChangeProcessor

        public void setChangeProcessor​(IFixChangeProcessor<? extends IFixChange,​? extends IFixContext> changeProcessor)
        Sets the change processor
        Parameters:
        changeProcessor - the change processor, cannot be null