Package org.apache.juneau.rest
Class RestChildMatch
java.lang.Object
org.apache.juneau.rest.RestChildMatch
Represents a matched 
Rest-annotated child on an HTTP request.
 See Also:
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedRestChildMatch(UrlPathMatch pathMatch, RestContext childContext) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionstatic RestChildMatchcreate(UrlPathMatch pathMatch, RestContext childContext) Creator.Returns the child context of the REST child match.Returns the path matching results of the REST child match.
- 
Constructor Details- 
RestChildMatchConstructor.- Parameters:
- pathMatch- The path matching results.
- childContext- The child context.
 
 
- 
- 
Method Details- 
createCreator.- Parameters:
- pathMatch- The path matching results.
- childContext- The child context.
- Returns:
- A new RestChildMatchobject.
 
- 
getPathMatchReturns the path matching results of the REST child match.- Returns:
- The path matching results of the REST child match.
 
- 
getChildContextReturns the child context of the REST child match.- Returns:
- The child context of the REST child match.
 
 
-