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 ofGrpcClientSecurity
instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GrpcClientSecurity
build()
Build the instance from this builder.GrpcClientSecurity.Builder
property(String name, Object value)
Set a new property that may be used bySecurityProvider
s 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 bySecurityProvider
s when creating the credentials to apply to the call.- Parameters:
name
- property name.value
- (new) property value.null
value removes the property with the given name.- Returns:
- the updated builder.
-
build
public GrpcClientSecurity build()
Description copied from interface:Builder
Build the instance from this builder.- Specified by:
build
in interfaceBuilder<GrpcClientSecurity>
- Returns:
- instance of the built type
-
-