Class RestChildMatch

java.lang.Object
org.apache.juneau.rest.RestChildMatch

public class RestChildMatch extends Object
Represents a matched Rest-annotated child on an HTTP request.
See Also:
  • Constructor Details

    • RestChildMatch

      protected RestChildMatch(UrlPathMatch pathMatch, RestContext childContext)
      Constructor.
      Parameters:
      pathMatch - The path matching results.
      childContext - The child context.
  • Method Details

    • create

      public static RestChildMatch create(UrlPathMatch pathMatch, RestContext childContext)
      Creator.
      Parameters:
      pathMatch - The path matching results.
      childContext - The child context.
      Returns:
      A new RestChildMatch object.
    • getPathMatch

      Returns the path matching results of the REST child match.
      Returns:
      The path matching results of the REST child match.
    • getChildContext

      Returns the child context of the REST child match.
      Returns:
      The child context of the REST child match.