Interface IWebServiceConfiguration

All Known Subinterfaces:
IRestServiceConfiguration, ISoapServiceConfiguration
All Known Implementing Classes:
RestServiceConfiguration, SoapServiceConfiguration, WebServiceConfiguration

public interface IWebServiceConfiguration
Since:
9.0
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    getOperation(String operationName)
    This method returns the operation that is available in this service.
    This method returns the available operation names for this service.
    boolean
    This method returns an indicator whether the service should validate incoming request.
  • Method Details

    • validate

      boolean validate()
      This method returns an indicator whether the service should validate incoming request.
      Returns:
      Indicator to validate services.
    • getOperations

      String[] getOperations()
      This method returns the available operation names for this service.
      Returns:
      An array containing the available operation names for this service, never null or empty.
    • getOperation

      IWebServiceOperationDefinition getOperation(String operationName)
      This method returns the operation that is available in this service.
      Parameters:
      operationName - The name of the operation, may not be null.
      Returns:
      The operation, never null.
      Throws:
      UnknownOperationException - Is thrown when the operation does not exist for the specified name.