- 
- Type Parameters:
- T- a type of the content entity
 - Enclosing interface:
- Handler
 - Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
 @FunctionalInterface public static interface Handler.EntityHandler<T> Handlesrequest,responseand HTTP request content entity. Used as functional parameter inHandler.create(Class, EntityHandler)method.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(ServerRequest req, ServerResponse res, T entity)
 
- 
- 
- 
Method Detail- 
acceptvoid accept(ServerRequest req, ServerResponse res, T entity) - Parameters:
- req- an HTTP request
- res- an HTTP response
- entity- an entity representing the HTTP request content
 
 
- 
 
-