Interface PathMetadata

All Known Implementing Classes:
IncomingHttpMetadata, RequestMetadata

public interface PathMetadata
Metadata for a request path. Invoked/Configured path may be different when using PathParameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the path configured for this request, eg /users/:userid for a req using PathParams
    Get the path used to invoke this request, eg /users/fred if the path was configured as /users/:userid
  • Method Details

    • getInvokedPath

      String getInvokedPath()
      Get the path used to invoke this request, eg /users/fred if the path was configured as /users/:userid
      Returns:
    • getConfiguredPath

      String getConfiguredPath()
      Get the path configured for this request, eg /users/:userid for a req using PathParams
      Returns: