Class OriginRequest.AkeneoPim.Builder
-
- All Implemented Interfaces:
public final class OriginRequest.AkeneoPim.BuilderA builder for AkeneoPim.
-
-
Method Summary
-
-
Method Detail
-
baseUrl
final OriginRequest.AkeneoPim.Builder baseUrl(String baseUrl)
Akeneo instance base URL.
-
baseUrl
final OriginRequest.AkeneoPim.Builder baseUrl(JsonField<String> baseUrl)
Sets Builder.baseUrl to an arbitrary JSON value.
You should usually call Builder.baseUrl with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
clientId
final OriginRequest.AkeneoPim.Builder clientId(String clientId)
Akeneo API client ID.
-
clientId
final OriginRequest.AkeneoPim.Builder clientId(JsonField<String> clientId)
Sets Builder.clientId to an arbitrary JSON value.
You should usually call Builder.clientId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
clientSecret
final OriginRequest.AkeneoPim.Builder clientSecret(String clientSecret)
Akeneo API client secret.
-
clientSecret
final OriginRequest.AkeneoPim.Builder clientSecret(JsonField<String> clientSecret)
Sets Builder.clientSecret to an arbitrary JSON value.
You should usually call Builder.clientSecret with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final OriginRequest.AkeneoPim.Builder name(String name)
Display name of the origin.
-
name
final OriginRequest.AkeneoPim.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
password
final OriginRequest.AkeneoPim.Builder password(String password)
Akeneo API password.
-
password
final OriginRequest.AkeneoPim.Builder password(JsonField<String> password)
Sets Builder.password to an arbitrary JSON value.
You should usually call Builder.password with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final OriginRequest.AkeneoPim.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("AKENEO_PIM")This method is primarily for setting the field to an undocumented or not yet supported value.
-
username
final OriginRequest.AkeneoPim.Builder username(String username)
Akeneo API username.
-
username
final OriginRequest.AkeneoPim.Builder username(JsonField<String> username)
Sets Builder.username to an arbitrary JSON value.
You should usually call Builder.username with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
baseUrlForCanonicalHeader
final OriginRequest.AkeneoPim.Builder baseUrlForCanonicalHeader(String baseUrlForCanonicalHeader)
URL used in the Canonical header (if enabled).
-
baseUrlForCanonicalHeader
final OriginRequest.AkeneoPim.Builder baseUrlForCanonicalHeader(JsonField<String> baseUrlForCanonicalHeader)
Sets Builder.baseUrlForCanonicalHeader to an arbitrary JSON value.
You should usually call Builder.baseUrlForCanonicalHeader with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
includeCanonicalHeader
final OriginRequest.AkeneoPim.Builder includeCanonicalHeader(Boolean includeCanonicalHeader)
Whether to send a Canonical header.
-
includeCanonicalHeader
final OriginRequest.AkeneoPim.Builder includeCanonicalHeader(JsonField<Boolean> includeCanonicalHeader)
Sets Builder.includeCanonicalHeader to an arbitrary JSON value.
You should usually call Builder.includeCanonicalHeader with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final OriginRequest.AkeneoPim.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final OriginRequest.AkeneoPim.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final OriginRequest.AkeneoPim.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final OriginRequest.AkeneoPim.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final OriginRequest.AkeneoPim.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final OriginRequest.AkeneoPim build()
Returns an immutable instance of AkeneoPim.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.baseUrl() .clientId() .clientSecret() .name() .password() .username()
-
-
-
-