Modifier and Type | Interface and Description |
---|---|
interface |
Endpoint<E extends Endpoint<E>>
Represents the metadata for an endpoint.
|
Modifier and Type | Method and Description |
---|---|
default <E extends Endpoint<E>> |
Action.getEndpoint(String type,
Class<E> clazz) |
default <T extends Endpoint<T>> |
Component.getEndpoint(String type,
Class<T> clazz)
Retrieves the endpoint at the given key as the given type.
|
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
Component.getEndpoint(String type)
Retrieves the endpoint at the given type, if it exists.
|
default Endpoint<?> |
Action.getEndpoint(String type) |
Modifier and Type | Method and Description |
---|---|
default Optional<Endpoint<?>> |
Component.findEndpoint(Predicate<Endpoint<?>> predicate)
Retrieves a single endpoint matching the given predicate.
|
default Optional<Endpoint<?>> |
Action.findEndpoint(Predicate<Endpoint<?>> predicate) |
default Optional<Endpoint<?>> |
Component.findEndpoint(String type)
Finds the endpoint stored at the given type.
|
default Optional<Endpoint<?>> |
Action.findEndpoint(String type) |
default List<Endpoint<?>> |
Component.findEndpoints(Predicate<Endpoint<?>> predicate)
Retrieves a list of endpoints that match the given predicate.
|
default Collection<Endpoint<?>> |
Action.findEndpoints(Predicate<Endpoint<?>> predicate) |
Map<String,Endpoint<?>> |
Component.getEndpoints()
A key-value map of endpoints used for managing the endpoints of this component.
|
Map<String,Endpoint<?>> |
AbstractComponent.getEndpoints() |
Map<String,Endpoint<?>> |
Action.getEndpoints() |
default Collection<Endpoint<?>> |
Component.getEndpointsList()
The serializable list of endpoints.
|
default Collection<Endpoint<?>> |
Action.getEndpointsList() |
Modifier and Type | Method and Description |
---|---|
default C |
Component.addEndpoint(Endpoint<?> endpoint)
Adds the provided endpoint to this component.
|
default A |
Action.addEndpoint(Endpoint<?> endpoint) |
default C |
Component.addEndpoint(String type,
Endpoint<?> endpoint)
Adds the provided endpoint with the given type to this component.
|
default A |
Action.addEndpoint(String type,
Endpoint<?> endpoint) |
Modifier and Type | Method and Description |
---|---|
default Optional<Endpoint<?>> |
Component.findEndpoint(Predicate<Endpoint<?>> predicate)
Retrieves a single endpoint matching the given predicate.
|
default Optional<Endpoint<?>> |
Action.findEndpoint(Predicate<Endpoint<?>> predicate) |
default List<Endpoint<?>> |
Component.findEndpoints(Predicate<Endpoint<?>> predicate)
Retrieves a list of endpoints that match the given predicate.
|
default Collection<Endpoint<?>> |
Action.findEndpoints(Predicate<Endpoint<?>> predicate) |
void |
Component.setEndpoints(Map<String,Endpoint<?>> endpoints) |
void |
AbstractComponent.setEndpoints(Map<String,Endpoint<?>> endpoints) |
void |
Action.setEndpoints(Map<String,Endpoint<?>> endpoints) |
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
ResourceGrid.getAssignEndpoint() |
default Endpoint<?> |
ResourceGrid.getCreateEndpoint() |
default Endpoint<?> |
ResourceGrid.getDeleteEndpoint() |
default Endpoint<?> |
Orderable.getOrderableEndpoint() |
default Endpoint<?> |
FetchEntity.getReadEndpoint()
Retrieves the
FetchEntity.EndpointTypes.READ endpoint for this component. |
default Endpoint<?> |
ResourceGrid.getUpdateEndpoint() |
default Endpoint<?> |
ResourceGrid.getUpdateTranslationsEndpoint() |
Modifier and Type | Method and Description |
---|---|
default Optional<Endpoint<?>> |
ResourceGrid.findAssignEndpoint() |
default Optional<Endpoint<?>> |
ResourceGrid.findCreateEndpoint() |
default Optional<Endpoint<?>> |
ResourceGrid.findDeleteEndpoint() |
default Optional<Endpoint<?>> |
Orderable.findOrderableEndpoint() |
default Optional<Endpoint<?>> |
FetchEntity.findReadEndpoint()
Finds the
FetchEntity.EndpointTypes.READ endpoint for this component. |
default Optional<Endpoint<?>> |
ResourceGrid.findUpdateEndpoint() |
default Optional<Endpoint<?>> |
ResourceGrid.findUpdateTranslationsEndpoint() |
Modifier and Type | Method and Description |
---|---|
default C |
FetchEntity.addReadEndpoint(Endpoint<?> endpoint)
Adds the
FetchEntity.EndpointTypes.READ endpoint for the component. |
default G |
ResourceGrid.assignEndpoint(Endpoint<?> endpoint) |
default G |
ResourceGrid.createEndpoint(Endpoint<?> endpoint) |
default G |
ResourceGrid.deleteEndpoint(Endpoint<?> endpoint) |
default R |
Orderable.orderableEndpoint(Endpoint<?> endpoint) |
default G |
ResourceGrid.updateEndpoint(Endpoint<?> endpoint) |
default G |
ResourceGrid.updateTranslationsEndpoint(Endpoint<?> endpoint) |
Modifier and Type | Method and Description |
---|---|
default G |
ResourceGrid.assignEndpoint(UnaryOperator<Endpoint<?>> fn) |
default G |
ResourceGrid.createEndpoint(UnaryOperator<Endpoint<?>> fn) |
default G |
ResourceGrid.deleteEndpoint(UnaryOperator<Endpoint<?>> fn) |
default R |
Orderable.orderableEndpoint(UnaryOperator<Endpoint<?>> fn) |
default C |
FetchEntity.readEndpoint(UnaryOperator<Endpoint<?>> fn)
Configures the
FetchEntity.EndpointTypes.READ endpoint for the component. |
default G |
ResourceGrid.updateEndpoint(UnaryOperator<Endpoint<?>> fn) |
default G |
ResourceGrid.updateTranslationsEndpoint(UnaryOperator<Endpoint<?>> fn) |
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
CloneModalFormAction.getCloneEndpoint()
Retrieves the
CloneModalFormAction.EndpointTypes.CLONE endpoint for this component. |
default Endpoint<?> |
RowModalFormAction.getSubmitEndpoint()
Retrieve the
RowModalFormAction.EndpointTypes.SUBMIT endpoint. |
Modifier and Type | Method and Description |
---|---|
default Optional<Endpoint<?>> |
CloneModalFormAction.findCloneEndpoint()
Finds the
CloneModalFormAction.EndpointTypes.CLONE endpoint for this component. |
default Optional<Endpoint<?>> |
RowModalFormAction.findSubmitEndpoint()
Retrieve the
RowModalFormAction.EndpointTypes.SUBMIT endpoint. |
default Optional<Endpoint<?>> |
TriggerAction.findTriggerEndpoint() |
Map<String,Endpoint<?>> |
AbstractAction.getEndpoints() |
Modifier and Type | Method and Description |
---|---|
default A |
CloneModalFormAction.addCloneEndpoint(Endpoint<?> endpoint)
Adds the
CloneModalFormAction.EndpointTypes.CLONE endpoint for the component. |
default A |
ExportGridAction.addReadExportEndpoint(Endpoint<?> endpoint)
Adds the endpoint to read the export by id.
|
default A |
ImportGridAction.addReadImportEndpoint(Endpoint<?> endpoint)
Adds the endpoint to read the import by id.
|
default A |
ExportGridAction.addStartExportEndpoint(Endpoint<?> endpoint)
Adds the endpoint to start the export.
|
default A |
ImportGridAction.addStartImportEndpoint(Endpoint<?> endpoint)
Adds the endpoint to start the import.
|
default A |
TriggerAction.addTriggerEndpoint(Endpoint<?> endpoint) |
default A |
RowModalFormAction.submitEndpoint(Endpoint<?> endpoint)
Configure the
RowModalFormAction.EndpointTypes.SUBMIT endpoint. |
Modifier and Type | Method and Description |
---|---|
default A |
CloneModalFormAction.cloneEndpoint(UnaryOperator<Endpoint<?>> fn)
Configures the
CloneModalFormAction.EndpointTypes.CLONE endpoint for the component. |
default A |
ExportGridAction.readExportEndpoint(UnaryOperator<Endpoint<?>> fn)
Adds the endpoint to read the export by id.
|
default A |
ImportGridAction.readImportEndpoint(String scope,
UnaryOperator<Endpoint<?>> fn)
Adds the endpoint to read the import by id.
|
void |
AbstractAction.setEndpoints(Map<String,Endpoint<?>> endpoints) |
default A |
ExportGridAction.startExportEndpoint(UnaryOperator<Endpoint<?>> fn)
Adds the endpoint to start the export.
|
default A |
ImportGridAction.startImportEndpoint(String scope,
UnaryOperator<Endpoint<?>> fn)
Adds the endpoint to start the import.
|
default A |
RowModalFormAction.submitEndpoint(UnaryOperator<Endpoint<?>> fn)
Configure the
RowModalFormAction.EndpointTypes.SUBMIT endpoint. |
default A |
TriggerAction.triggerEndpoint(UnaryOperator<Endpoint<?>> fn) |
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
Tree.getCreateItemEndpoint() |
default Endpoint<?> |
Tree.getDeleteItemEndpoint() |
default Endpoint<?> |
Tree.getReadAncestorsEndpoint() |
default Endpoint<?> |
Tree.getReadChildrenItemsEndpoint() |
default Endpoint<?> |
Tree.getReadItemEndpoint() |
default Endpoint<?> |
Tree.getReadRootItemsEndpoint() |
default Endpoint<?> |
Tree.getUpdateItemEndpoint() |
default Endpoint<?> |
Tree.getUpdateTranslationsEndpoint() |
Modifier and Type | Method and Description |
---|---|
default T |
Tree.createItemEndpoint(Endpoint<?> endpoint) |
default T |
Tree.deleteItemEndpoint(Endpoint<?> endpoint) |
default T |
Tree.readAncestorsEndpoint(Endpoint<?> endpoint) |
default T |
Tree.readChildrenItemsEndpoint(Endpoint<?> endpoint) |
default T |
Tree.readItemEndpoint(Endpoint<?> endpoint) |
default T |
Tree.readRootItemsEndpoint(Endpoint<?> endpoint) |
default T |
Tree.updateItemEndpoint(Endpoint<?> endpoint) |
default T |
Tree.updateTranslationsEndpoint(Endpoint<?> endpoint) |
Modifier and Type | Method and Description |
---|---|
default T |
Tree.createItemEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.deleteItemEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.readAncestorsEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.readChildrenItemsEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.readItemEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.readRootItemsEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.updateItemEndpoint(UnaryOperator<Endpoint<?>> fn) |
default T |
Tree.updateTranslationsEndpoint(UnaryOperator<Endpoint<?>> fn) |
Modifier and Type | Interface and Description |
---|---|
interface |
PageableEndpoint<E extends PageableEndpoint<E>>
Represents the metadata for a pageable endpoint.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEndpoint<E extends AbstractEndpoint<E>> |
class |
DefaultEndpoint |
class |
DefaultPageableEndpoint
Default implementation of
PageableEndpoint . |
Constructor and Description |
---|
AbstractEndpoint(Endpoint<?> endpoint) |
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
LookupField.getHydrateEndpoint() |
Modifier and Type | Method and Description |
---|---|
default Optional<Endpoint<?>> |
LookupField.findHydrateEndpoint() |
Modifier and Type | Method and Description |
---|---|
default F |
LookupField.hydrateEndpoint(Endpoint<?> endpoint)
Configures the hydration endpoint for the lookup.
|
Modifier and Type | Method and Description |
---|---|
default F |
LookupField.hydrateEndpoint(UnaryOperator<Endpoint<?>> fn)
Configures the hydration endpoint for the lookup.
|
Modifier and Type | Method and Description |
---|---|
default Endpoint<?> |
UpdateEntityView.getDeleteEndpoint() |
default Endpoint<?> |
UpdateEntityView.getSubmitEndpoint() |
default Endpoint<?> |
CreateEntityView.getSubmitEndpoint() |
default Endpoint<?> |
UpdateEntityView.getUpdateTranslationsEndpoint() |
Modifier and Type | Method and Description |
---|---|
default V |
UpdateEntityView.addDeleteEndpoint(Endpoint<?> endpoint) |
default V |
UpdateEntityView.addSubmitEndpoint(Endpoint<?> endpoint) |
default V |
UpdateEntityView.addSubmitTranslationsEndpoint(Endpoint<?> endpoint) |
default V |
CreateEntityView.submitEndpoint(Endpoint<?> endpoint) |
Modifier and Type | Method and Description |
---|---|
default V |
UpdateEntityView.deleteEndpoint(UnaryOperator<Endpoint<?>> fn) |
default V |
UpdateEntityView.submitEndpoint(UnaryOperator<Endpoint<?>> fn) |
default V |
CreateEntityView.submitEndpoint(UnaryOperator<Endpoint<?>> fn) |
default V |
UpdateEntityView.submitTranslationsEndpoint(UnaryOperator<Endpoint<?>> fn) |
Modifier and Type | Method and Description |
---|---|
default void |
ComponentValidatorManager.validateEndpoint(Endpoint<?> target,
org.springframework.validation.Errors errors)
Method used to validate
Endpoint objects. |
Modifier and Type | Method and Description |
---|---|
void |
EndpointValidator.validate(Endpoint<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
DefaultEndpointValidator.validate(Endpoint<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
Copyright © 2021. All rights reserved.