Class SequenceMediatorService

    • Constructor Detail

      • SequenceMediatorService

        public SequenceMediatorService()
    • Method Detail

      • getTagLocalName

        public String getTagLocalName()
        Description copied from interface: MediatorService
        This gives the mediator serialization tag local name. Example: if you take the LogMediator derived from the LogMediatorSerializer the tag local name is log
        Returns:
        tag local name of the mediator tag QName
      • getDisplayName

        public String getDisplayName()
        Description copied from interface: MediatorService
        This gives the display name for the mediator in the add mediator menu, and this can be any String. It is recommended to put a meaning full descriptive short name as the display name
        Returns:
        display name in the add mediator menu of the mediator
      • getLogicalName

        public String getLogicalName()
        Description copied from interface: MediatorService
        This should be equivalent to Mediator.getType() of the mediator. The value of this is generally the class name without the package declaration. Example: logical name of the LogMediator is LogMediator
        Returns:
        logical name of the mediator
      • getMediator

        public Mediator getMediator()
        Description copied from interface: MediatorService
        Retrieves a default new mediator instances of the representing mediator. This method is used by the mediator addition and will be called to get a new instance of the mediator.

        It is recommended to fill the required fields of the mediator with the default values if possible before returning the new instance, so that the user can just save this mediator if he/she is not smart.

        Returns:
        new instance of the mediator with the default values filled