Annotation Interface DataMethod
@Retention(RUNTIME)
@Target({METHOD,ANNOTATION_TYPE})
@Internal
@Inherited
public @interface DataMethod
Internal annotation used to configure execution handling for io.micronaut.data.runtime.intercept.DataIntroductionAdvice.
- Since:
- 1.0
- Author:
- graemerocher
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Describes the operation type. -
Required Element Summary
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Not usedDeprecated, for removal: This API element is subject to removal in a future version.Not usedDeprecated, for removal: This API element is subject to removal in a future version.Not usedlong
Deprecated, for removal: This API element is subject to removal in a future version.Not usedint
Deprecated, for removal: This API element is subject to removal in a future version.Not usedio.micronaut.context.annotation.Property[]
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedboolean
Class<?>
The computed result type.Class<?>
The root entity this method applies to. -
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The member that holds the count query.static final String
Does the query result in a DTO object.static final String
Deprecated, for removal: This API element is subject to removal in a future version.Not usedstatic final String
The member that holds expandable count query parts.static final String
The member that holds expandable query parts.static final String
Deprecated, for removal: This API element is subject to removal in a future version.Not usedstatic final String
Deprecated, for removal: This API element is subject to removal in a future version.Not usedstatic final String
The member name that holds the interceptor type.static final String
The parameter that holds the limit value.static final String
The parameter that holds the offset value.static final String
The member name that holds the root entity type.static final String
Does the query contains optimistic lock.static final String
Deprecated, for removal: This API element is subject to removal in a future version.Replaced withMETA_MEMBER_OFFSET
static final String
Deprecated, for removal: This API element is subject to removal in a future version.Replaced withMETA_MEMBER_LIMIT
static final String
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedstatic final String
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedstatic final String
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedstatic final String
Meta member for storing the parameters.static final String
The member that holds the is procedure value.static final String
The query builder to use.static final String
Whether the user is a raw user specified query.static final String
Whether the user is a raw user specified query.static final String
The member name that holds the result type.static final String
The member name that holds the result type.static final String
The member name that holds the root entity type.static final String
The annotation name.
-
Field Details
-
NAME
The annotation name. -
META_MEMBER_PROCEDURE
The member that holds the is procedure value.- See Also:
-
META_MEMBER_EXPANDABLE_QUERY
The member that holds expandable query parts.- See Also:
-
META_MEMBER_EXPANDABLE_COUNT_QUERY
The member that holds expandable count query parts.- See Also:
-
META_MEMBER_COUNT_QUERY
The member that holds the count query.- See Also:
-
META_MEMBER_RESULT_TYPE
The member name that holds the result type.- See Also:
-
META_MEMBER_RESULT_DATA_TYPE
The member name that holds the result type.- See Also:
-
META_MEMBER_ROOT_ENTITY
The member name that holds the root entity type.- See Also:
-
META_MEMBER_INTERCEPTOR
The member name that holds the interceptor type.- See Also:
-
META_MEMBER_PARAMETER_BINDING
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedThe member name that holds parameter binding.- See Also:
-
META_MEMBER_ID_TYPE
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe ID type.- See Also:
-
META_MEMBER_PAGE_SIZE
Deprecated, for removal: This API element is subject to removal in a future version.Replaced withMETA_MEMBER_LIMIT
The parameter that holds the pageSize value.- See Also:
-
META_MEMBER_PAGE_INDEX
Deprecated, for removal: This API element is subject to removal in a future version.Replaced withMETA_MEMBER_OFFSET
The parameter that holds the offset value.- See Also:
-
META_MEMBER_OFFSET
The parameter that holds the offset value.- See Also:
-
META_MEMBER_LIMIT
The parameter that holds the limit value.- See Also:
-
META_MEMBER_ENTITY
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe parameter that references the entity.- See Also:
-
META_MEMBER_ID
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe parameter that references the ID.- See Also:
-
META_MEMBER_DTO
Does the query result in a DTO object.- See Also:
-
META_MEMBER_OPTIMISTIC_LOCK
Does the query contains optimistic lock.- See Also:
-
META_MEMBER_QUERY_BUILDER
The query builder to use.- See Also:
-
META_MEMBER_RAW_QUERY
Whether the user is a raw user specified query.- See Also:
-
META_MEMBER_RAW_COUNT_QUERY
Whether the user is a raw user specified query.- See Also:
-
META_MEMBER_PARAMETER_TYPE_DEFS
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedMeta member for storing the parameter type defs.- See Also:
-
META_MEMBER_PARAMETER_CONVERTERS
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedMeta member for storing the parameter converters.- See Also:
-
META_MEMBER_PARAMETERS
Meta member for storing the parameters.- See Also:
-
META_MEMBER_OPERATION_TYPE
The member name that holds the root entity type.- See Also:
-
-
Element Details
-
interceptor
Class<? extends DataInterceptor> interceptor- Returns:
- The child interceptor to use for the method execution.
-
-
-
rootEntity
Class<?> rootEntityThe root entity this method applies to.- Returns:
- The root entity
- Default:
- void.class
-
resultType
Class<?> resultTypeThe computed result type. This represents the type that is to be read from the database. For example for aList
this would return the value of the generic type parameterE
. Or for an entity result the return type itself.- Returns:
- The result type
- Default:
- void.class
-
resultDataType
DataType resultDataType- Returns:
- The result data type.
- Default:
- OBJECT
-
parameterBinding
Deprecated, for removal: This API element is subject to removal in a future version.No longer usedThe parameter binding defines which method arguments bind to which query parameters. TheProperty.name()
is used to define the query parameter name and theProperty.value()
is used to define method argument name to bind.- Returns:
- The parameter binding.
- Default:
- {}
-
pageable
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe argument that defines the pageable object.- Returns:
- The pageable.
- Default:
- ""
-
entity
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe argument that represents the entity for save, update, query by example operations etc.- Returns:
- The entity argument
- Default:
- ""
-
id
Deprecated, for removal: This API element is subject to removal in a future version.Not usedThe member that defines the ID for lookup, delete, update by ID.- Returns:
- The ID
- Default:
- ""
-
pageSize
Deprecated, for removal: This API element is subject to removal in a future version.Not usedAn explicit pageSize (in absence of a pageable).- Returns:
- The pageSize
- Default:
- -1
-
pageIndex
Deprecated, for removal: This API element is subject to removal in a future version.Not usedAn explicit offset (in absence of a pageable).- Returns:
- The offset
- Default:
- 0L
-
parameters
DataMethodQueryParameter[] parameters- Returns:
- The query parameters
- Default:
- {}
-
procedure
boolean procedure- Returns:
- True if the method represents the procedure invocation.
- Since:
- 4.2.0
- Default:
- false
-