-
public interface InterceptorSupportSupport for interceptors.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInterceptorSupport.BuilderFluent API builder forInterceptorSupport.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static InterceptorSupport.Builderbuilder()Create a new fluent API builder.List<DbInterceptor>interceptors(DbStatementType dbStatementType, String statementName)Get a list of interceptors to be executed for the specified statement.
-
-
-
Method Detail
-
interceptors
List<DbInterceptor> interceptors(DbStatementType dbStatementType, String statementName)
Get a list of interceptors to be executed for the specified statement.- Parameters:
dbStatementType- Type of the statementstatementName- Name of the statement (unnamed statements should have a name generated, seeAbstractDbExecute.generateName(io.helidon.dbclient.DbStatementType, String)- Returns:
- list of interceptors to executed for the defined type and name (may be empty)
- See Also:
DbInterceptor
-
builder
static InterceptorSupport.Builder builder()
Create a new fluent API builder.- Returns:
- a builder instance
-
-