Package org.refcodes.mixin
Interface RequestAccessor<REQ>
-
- Type Parameters:
REQ
- The type of the request to be used.
- All Known Subinterfaces:
RequestAccessor.RequestProperty<REQ>
public interface RequestAccessor<REQ>
Provides access to a request property for e.g. key / request pair.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RequestAccessor.RequestBuilder<REQ,B extends RequestAccessor.RequestBuilder<REQ,B>>
Provides a builder method for a request property returning the builder for applying multiple build operations.static interface
RequestAccessor.RequestMutator<REQ>
Extends theRequestAccessor
with a setter method.static interface
RequestAccessor.RequestProperty<REQ>
Extends theRequestAccessor
with a setter method.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description REQ
getRequest()
Retrieves the request from the request property.
-
-
-
Method Detail
-
getRequest
REQ getRequest()
Retrieves the request from the request property.- Returns:
- The request stored by the request property.
-
-