Interface IServiceCallDefinition

All Known Implementing Classes:
ServiceCallDefinition

public interface IServiceCallDefinition
This interface defines several methods that can be used to retrieve static information about a service call.
Since:
6.4
Author:
Jon van Leuven
  • Method Details

    • getCallName

      String getCallName()
      This method returns the service call name.
      Returns:
      The service call name, never null.
    • getTypeName

      String getTypeName()
      This method returns the service type name.
      Returns:
      The service type name, never null.
    • getParameters

      ITypedParameters getParameters()
      This method returns the service parameters.
      Returns:
      The service parameters, never null.
    • getExitEvents

      ServiceCallEvent[] getExitEvents()
      This method returns the possible exit events for this service call definition.
      Returns:
      The possible exit events, never null.
    • getExitEvent

      ExitEvent getExitEvent(IServiceResult result)