Interface CustomerPasswordTokenCreatedMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
Generated after a successful Create password reset token for Customer or Create password reset token for Customer in Store request. The resource
property of the Message is a CustomerPasswordTokenReference.
Example to create an instance using the builder pattern
CustomerPasswordTokenCreatedMessage customerPasswordTokenCreatedMessage = CustomerPasswordTokenCreatedMessage.builder()
.id("{id}")
.version(0.3)
.createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.sequenceNumber(0.3)
.resource(resourceBuilder -> resourceBuilder)
.resourceVersion(0.3)
.customerId("{customerId}")
.expiresAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.invalidateOlderTokens(true)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
discriminator value for CustomerPasswordTokenCreatedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CustomerPasswordTokenCreatedMessagebuilder
(CustomerPasswordTokenCreatedMessage template) create builder for CustomerPasswordTokenCreatedMessage instancecopyDeep()
deepCopy
(CustomerPasswordTokenCreatedMessage template) factory method to create a deep copy of CustomerPasswordTokenCreatedMessage@NotNull String
Unique identifier of the Customer.@NotNull ZonedDateTime
Date and time (UTC) the password token expires.@NotNull Boolean
Iftrue
, all password tokens issued previously for the Customer are invalidated.getValue()
Value of the token, present only if the token's validity is 60 minutes or less.of()
factory methodof
(CustomerPasswordTokenCreatedMessage template) factory method to create a shallow copy CustomerPasswordTokenCreatedMessagevoid
setCustomerId
(String customerId) Unique identifier of the Customer.void
setExpiresAt
(ZonedDateTime expiresAt) Date and time (UTC) the password token expires.void
setInvalidateOlderTokens
(Boolean invalidateOlderTokens) Iftrue
, all password tokens issued previously for the Customer are invalidated.void
Value of the token, present only if the token's validity is 60 minutes or less.static com.fasterxml.jackson.core.type.TypeReference<CustomerPasswordTokenCreatedMessage>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.BaseResource
withBaseResource
Methods inherited from interface com.commercetools.api.models.DomainResource
get
Methods inherited from interface com.commercetools.api.models.message.Message
getCreatedAt, getCreatedBy, getId, getLastModifiedAt, getLastModifiedBy, getResource, getResourceUserProvidedIdentifiers, getResourceVersion, getSequenceNumber, getType, getVersion, setCreatedAt, setCreatedBy, setId, setLastModifiedAt, setLastModifiedBy, setResource, setResourceUserProvidedIdentifiers, setResourceVersion, setSequenceNumber, setVersion, withMessage
-
Field Details
-
CUSTOMER_PASSWORD_TOKEN_CREATED
discriminator value for CustomerPasswordTokenCreatedMessage- See Also:
-
-
Method Details
-
getCustomerId
Unique identifier of the Customer.
- Returns:
- customerId
-
getExpiresAt
Date and time (UTC) the password token expires.
- Returns:
- expiresAt
-
getValue
String getValue()Value of the token, present only if the token's validity is 60 minutes or less.
- Returns:
- value
-
getInvalidateOlderTokens
If
true
, all password tokens issued previously for the Customer are invalidated.- Returns:
- invalidateOlderTokens
-
setCustomerId
Unique identifier of the Customer.
- Parameters:
customerId
- value to be set
-
setExpiresAt
Date and time (UTC) the password token expires.
- Parameters:
expiresAt
- value to be set
-
setValue
Value of the token, present only if the token's validity is 60 minutes or less.
- Parameters:
value
- value to be set
-
setInvalidateOlderTokens
If
true
, all password tokens issued previously for the Customer are invalidated.- Parameters:
invalidateOlderTokens
- value to be set
-
of
factory method- Returns:
- instance of CustomerPasswordTokenCreatedMessage
-
of
factory method to create a shallow copy CustomerPasswordTokenCreatedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
copyDeep
CustomerPasswordTokenCreatedMessage copyDeep()- Specified by:
copyDeep
in interfaceBaseResource
- Specified by:
copyDeep
in interfaceMessage
-
deepCopy
@Nullable static CustomerPasswordTokenCreatedMessage deepCopy(@Nullable CustomerPasswordTokenCreatedMessage template) factory method to create a deep copy of CustomerPasswordTokenCreatedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CustomerPasswordTokenCreatedMessage- Returns:
- builder
-
builder
static CustomerPasswordTokenCreatedMessageBuilder builder(CustomerPasswordTokenCreatedMessage template) create builder for CustomerPasswordTokenCreatedMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCustomerPasswordTokenCreatedMessage
default <T> T withCustomerPasswordTokenCreatedMessage(Function<CustomerPasswordTokenCreatedMessage, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<CustomerPasswordTokenCreatedMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-