Class AzureFunctionsAuthenticationBuilder
java.lang.Object
com.commercetools.api.models.extension.AzureFunctionsAuthenticationBuilder
- All Implemented Interfaces:
Builder<AzureFunctionsAuthentication>
- Direct Known Subclasses:
ExtensionAzureFunctionsAuthenticationBuilder
public class AzureFunctionsAuthenticationBuilder
extends Object
implements Builder<AzureFunctionsAuthentication>
AzureFunctionsAuthenticationBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
AzureFunctionsAuthentication azureFunctionsAuthentication = AzureFunctionsAuthentication.builder()
.key("{key}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds AzureFunctionsAuthentication with checking for non-null required valuesbuilds AzureFunctionsAuthentication without checking for non-null required valuesgetKey()
Partially hidden on retrieval for security reasons.Partially hidden on retrieval for security reasons.of()
factory method for an instance of AzureFunctionsAuthenticationBuilderof
(AzureFunctionsAuthentication template) create builder for AzureFunctionsAuthentication instance
-
Constructor Details
-
AzureFunctionsAuthenticationBuilder
public AzureFunctionsAuthenticationBuilder()
-
-
Method Details
-
key
Partially hidden on retrieval for security reasons.
- Parameters:
key
- value to be set- Returns:
- Builder
-
getKey
Partially hidden on retrieval for security reasons.
- Returns:
- key
-
build
builds AzureFunctionsAuthentication with checking for non-null required values- Specified by:
build
in interfaceBuilder<AzureFunctionsAuthentication>
- Returns:
- AzureFunctionsAuthentication
-
buildUnchecked
builds AzureFunctionsAuthentication without checking for non-null required values- Returns:
- AzureFunctionsAuthentication
-
of
factory method for an instance of AzureFunctionsAuthenticationBuilder- Returns:
- builder
-
of
create builder for AzureFunctionsAuthentication instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-