Interface WebApplicationRequestMapping

All Known Implementing Classes:
DefaultWebApplicationRequestMapping

public interface WebApplicationRequestMapping
The WebApplicationRequestMapping API.
Author:
Manfred Riem ([email protected])
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the match value.
    Returns the path.
    boolean
    Is this an exact match.
    boolean
    Is this an extension match.
  • Method Details

    • getMatchValue

      String getMatchValue()
      Returns the match value.
      Returns:
      the match value
    • getPattern

      String getPattern()
      Returns the path.
      Returns:
      the path
    • isExact

      boolean isExact()
      Is this an exact match.
      Returns:
      true it it is, false otherwise.
    • isExtension

      boolean isExtension()
      Is this an extension match.
      Returns:
      true if it is, false otherwise.