Class GrpcClientSecurity.Builder
- java.lang.Object
-
- io.helidon.security.integration.grpc.GrpcClientSecurity.Builder
-
- All Implemented Interfaces:
Builder<GrpcClientSecurity>,Supplier<GrpcClientSecurity>
- Enclosing class:
- GrpcClientSecurity
public static final class GrpcClientSecurity.Builder extends Object implements Builder<GrpcClientSecurity>
A builder ofGrpcClientSecurityinstances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GrpcClientSecuritybuild()Build the instance from this builder.GrpcClientSecurity.Builderproperty(String name, Object value)Set a new property that may be used bySecurityProviders when creating the credentials to apply to the call.
-
-
-
Method Detail
-
property
public GrpcClientSecurity.Builder property(String name, Object value)
Set a new property that may be used bySecurityProviders when creating the credentials to apply to the call.- Parameters:
name- property name.value- (new) property value.nullvalue removes the property with the given name.- Returns:
- the updated builder.
-
build
public GrpcClientSecurity build()
Description copied from interface:BuilderBuild the instance from this builder.- Specified by:
buildin interfaceBuilder<GrpcClientSecurity>- Returns:
- instance of the built type
-
-