See: Description
| Interface | Description |
|---|---|
| AutocompleteHelper.ItemSearch |
Called to generate completions for a given query.
|
| Controller |
A
Controller is responsible for handling incoming HTTP requests. |
| Interceptor |
Can be used to intercept calls to controllers (
Controller) |
| Class | Description |
|---|---|
| AutocompleteHelper |
Used to generate a response expected by autocomplete-able input fields.
|
| AutocompleteHelper.Completion |
Represents a suggestion or completion of a given keyword
|
| BasicController |
Basic implementation of
Controller providing convenience methods and default routing. |
| ControllerDispatcher |
Dispatches incoming requests to the appropriate
Controller. |
| Facet |
Represents a filter facet used by search / query results.
|
| FacetItem |
Represents a single item of a
Facet. |
| FacetRange |
Represents a range filter for a
Facet used for filtering on lower and/or upper bounds. |
| Message |
Used by the
UserContext to collect error or success messages. |
| Page<E> |
Represents a slice of a result set which is being "paged through" and can provide filter facets.
|
| Route |
Represents a compiled routed as a result of parsing a
Controller and its methods. |
| Annotation Type | Description |
|---|---|
| DefaultRoute |
Used by
BasicController and its subclasses to identify a fallback route. |
| Routed |
Attaches a URI to a
Controller method. |
Controller classes will be found and used to handle incoming HTTP requests based on
Routed
annotations placed on the controller methods.
Rythm-templates can be used as views in order to generate HTML output.
Copyright © 2018. All rights reserved.