@@ -60,7 +60,7 @@ public Object execute(AbstractEbeanQuery query, Object[] values) {
6060 /**
6161 * Executes the query to return a simple collection of entities.
6262 */
63- static class CollectionExecutionAbstract extends AbstractEbeanQueryExecution {
63+ static class CollectionExecution extends AbstractEbeanQueryExecution {
6464
6565 @ Override
6666 protected Object doExecute (AbstractEbeanQuery repositoryQuery , Object [] values ) {
@@ -74,16 +74,16 @@ protected Object doExecute(AbstractEbeanQuery repositoryQuery, Object[] values)
7474 *
7575 * @author Xuegui Yuan
7676 */
77- static class SlicedExecutionAbstract extends AbstractEbeanQueryExecution {
77+ static class SlicedExecution extends AbstractEbeanQueryExecution {
7878
7979 private final Parameters <?, ?> parameters ;
8080
8181 /**
82- * Creates a new {@link SlicedExecutionAbstract } using the given {@link Parameters}.
82+ * Creates a new {@link SlicedExecution } using the given {@link Parameters}.
8383 *
8484 * @param parameters must not be {@literal null}.
8585 */
86- public SlicedExecutionAbstract (Parameters <?, ?> parameters ) {
86+ public SlicedExecution (Parameters <?, ?> parameters ) {
8787 this .parameters = parameters ;
8888 }
8989
@@ -104,11 +104,11 @@ protected Object doExecute(AbstractEbeanQuery query, Object[] values) {
104104 * Executes the {@link AbstractStringBasedEbeanQuery} to return a {@link org.springframework.data.domain.Page} of
105105 * entities.
106106 */
107- static class PagedExecutionAbstract extends AbstractEbeanQueryExecution {
107+ static class PagedExecution extends AbstractEbeanQueryExecution {
108108
109109 private final Parameters <?, ?> parameters ;
110110
111- public PagedExecutionAbstract (Parameters <?, ?> parameters ) {
111+ public PagedExecution (Parameters <?, ?> parameters ) {
112112
113113 this .parameters = parameters ;
114114 }
@@ -126,7 +126,7 @@ protected Object doExecute(final AbstractEbeanQuery repositoryQuery, final Objec
126126 /**
127127 * Executes a {@link AbstractStringBasedEbeanQuery} to return a single entity.
128128 */
129- static class SingleEntityExecutionAbstract extends AbstractEbeanQueryExecution {
129+ static class SingleEntityExecution extends AbstractEbeanQueryExecution {
130130
131131 @ Override
132132 protected Object doExecute (AbstractEbeanQuery query , Object [] values ) {
@@ -138,7 +138,7 @@ protected Object doExecute(AbstractEbeanQuery query, Object[] values) {
138138 /**
139139 * Executes a update query such as an update, insert or delete.
140140 */
141- static class UpdateExecutionAbstract extends AbstractEbeanQueryExecution {
141+ static class UpdateExecution extends AbstractEbeanQueryExecution {
142142
143143 private final EbeanServer ebeanServer ;
144144
@@ -148,7 +148,7 @@ static class UpdateExecutionAbstract extends AbstractEbeanQueryExecution {
148148 *
149149 * @param ebeanServer
150150 */
151- public UpdateExecutionAbstract (EbeanQueryMethod method , EbeanServer ebeanServer ) {
151+ public UpdateExecution (EbeanQueryMethod method , EbeanServer ebeanServer ) {
152152
153153 Class <?> returnType = method .getReturnType ();
154154
@@ -172,11 +172,11 @@ protected Object doExecute(AbstractEbeanQuery query, Object[] values) {
172172 *
173173 * @author Xuegui Yuan
174174 */
175- static class DeleteExecutionAbstract extends AbstractEbeanQueryExecution {
175+ static class DeleteExecution extends AbstractEbeanQueryExecution {
176176
177177 private final EbeanServer ebeanServer ;
178178
179- public DeleteExecutionAbstract (EbeanServer ebeanServer ) {
179+ public DeleteExecution (EbeanServer ebeanServer ) {
180180 this .ebeanServer = ebeanServer ;
181181 }
182182
@@ -196,7 +196,7 @@ protected Object doExecute(AbstractEbeanQuery ebeanQuery, Object[] values) {
196196 *
197197 * @author Xuegui Yuan
198198 */
199- static class ExistsExecutionAbstract extends AbstractEbeanQueryExecution {
199+ static class ExistsExecution extends AbstractEbeanQueryExecution {
200200
201201 @ Override
202202 protected Object doExecute (AbstractEbeanQuery ebeanQuery , Object [] values ) {
@@ -210,7 +210,7 @@ protected Object doExecute(AbstractEbeanQuery ebeanQuery, Object[] values) {
210210 *
211211 * @author Xuegui Yuan
212212 */
213- static class StreamExecutionAbstract extends AbstractEbeanQueryExecution {
213+ static class StreamExecution extends AbstractEbeanQueryExecution {
214214
215215 private static final String NO_SURROUNDING_TRANSACTION = "You're trying to execute a streaming query method without a surrounding transaction that keeps the connection open so that the Stream can actually be consumed. Make sure the code consuming the stream uses @Transactional or any other way of declaring a (read-only) transaction." ;
216216
0 commit comments