Interface IServiceManager

All Known Implementing Classes:
InfiniteServiceLoopDetector, ServiceManager

public interface IServiceManager
This interface may be used to request a service call implementation.
Since:
6.4
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    getServiceCall(String serviceCallName)
    This method can be used to retrieve a service call implementation.
    This method returns all available service call names.
  • Method Details

    • getServiceCall

      IServiceCall getServiceCall(String serviceCallName)
      This method can be used to retrieve a service call implementation.
      Parameters:
      serviceCallName - The service call name used for lookup (case insensitive)
      Returns:
      A service call implementation, never null.
      Throws:
      UnknownServiceCallException - When no service call could be found with the specified name.
    • getServiceCallNames

      String[] getServiceCallNames()
      This method returns all available service call names.
      Returns:
      An array containing all service call names, never null.