Module io.helidon.dbclient.common
Package io.helidon.dbclient.common
Class InterceptorSupport.Builder
- java.lang.Object
-
- io.helidon.dbclient.common.InterceptorSupport.Builder
-
- All Implemented Interfaces:
Builder<InterceptorSupport>,Supplier<InterceptorSupport>
- Enclosing interface:
- InterceptorSupport
public static final class InterceptorSupport.Builder extends Object implements Builder<InterceptorSupport>
Fluent API builder forInterceptorSupport.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InterceptorSupport.Builderadd(DbInterceptor interceptor)InterceptorSupport.Builderadd(DbInterceptor interceptor, DbStatementType... dbStatementTypes)InterceptorSupport.Builderadd(DbInterceptor interceptor, String... statementNames)InterceptorSupportbuild()Build the instance from this builder.
-
-
-
Method Detail
-
build
public InterceptorSupport build()
Description copied from interface:BuilderBuild the instance from this builder.- Specified by:
buildin interfaceBuilder<InterceptorSupport>- Returns:
- instance of the built type
-
add
public InterceptorSupport.Builder add(DbInterceptor interceptor)
-
add
public InterceptorSupport.Builder add(DbInterceptor interceptor, String... statementNames)
-
add
public InterceptorSupport.Builder add(DbInterceptor interceptor, DbStatementType... dbStatementTypes)
-
-