Enum Class FrankSender.Scope

java.lang.Object
java.lang.Enum<FrankSender.Scope>
org.frankframework.senders.FrankSender.Scope
All Implemented Interfaces:
Serializable, Comparable<FrankSender.Scope>, Constable
Enclosing class:
FrankSender

public static enum FrankSender.Scope extends Enum<FrankSender.Scope>
Scope for FrankSender call: Another Frank!Framework Adapter, or another Java application running in the same JVM.
  • ADAPTER is the most efficient, low-overhead method to call another adapter directly
  • LISTENER calls another adapter via a configured FrankListener. Use this when you need all message logging and error handling that is in the Receiver.
  • JVM is the regular way of invoking another Java application in the same JVM.
  • DLL is a special way of invoking the other application, calling code loaded from a DLL that has been registered as service.
For JVM and DLL, see the documentation of the IbisServiceDispatcher library for further details on how implement a Java program or DLL running alongside the Frank!Framework that can be called from the Frank!Framework.

See

https://github.com/frankframework/servicedispatcher
  • Enum Constant Details

  • Method Details

    • values

      public static FrankSender.Scope[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FrankSender.Scope valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null