java.lang.Object
java.lang.Enum<RouteType>
org.qubership.integration.platform.engine.model.deployment.update.RouteType
All Implemented Interfaces:
Serializable, Comparable<RouteType>, Constable

public enum RouteType extends Enum<RouteType>
  • Enum Constant Details

    • EXTERNAL_TRIGGER

      public static final RouteType EXTERNAL_TRIGGER
    • PRIVATE_TRIGGER

      public static final RouteType PRIVATE_TRIGGER
    • EXTERNAL_PRIVATE_TRIGGER

      public static final RouteType EXTERNAL_PRIVATE_TRIGGER
    • INTERNAL_TRIGGER

      public static final RouteType INTERNAL_TRIGGER
    • EXTERNAL_SENDER

      public static final RouteType EXTERNAL_SENDER
    • EXTERNAL_SERVICE

      public static final RouteType EXTERNAL_SERVICE
    • INTERNAL_SERVICE

      public static final RouteType INTERNAL_SERVICE
    • IMPLEMENTED_SERVICE

      public static final RouteType IMPLEMENTED_SERVICE
  • Method Details

    • values

      public static RouteType[] 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 RouteType 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
    • convertTriggerType

      public static RouteType convertTriggerType(boolean isExternal, boolean isPrivate)
    • isPrivateTriggerRoute

      public static boolean isPrivateTriggerRoute(RouteType routeType)
    • isPublicTriggerRoute

      public static boolean isPublicTriggerRoute(RouteType routeType)
    • triggerRouteCleanupNeeded

      public static boolean triggerRouteCleanupNeeded(RouteType routeType)
    • triggerRouteWithGateway

      public static boolean triggerRouteWithGateway(RouteType routeType)