io.sphere.sdk.customers.commands.CustomerPasswordResetCommand Maven / Gradle / Ivy
package io.sphere.sdk.customers.commands;
import com.fasterxml.jackson.databind.JavaType;
import io.sphere.sdk.client.HttpRequestIntent;
import io.sphere.sdk.commands.CommandImpl;
import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.customers.CustomerToken;
import io.sphere.sdk.models.Versioned;
import io.sphere.sdk.json.SphereJsonUtils;
import static io.sphere.sdk.http.HttpMethod.POST;
/**
* Sets a new password for the customer. Requires a token from {@link CustomerCreatePasswordTokenCommand}.
*
* {@include.example io.sphere.sdk.customers.commands.CustomerPasswordResetCommandTest#execution()}
*
* Example for a failed request:
* {@include.example io.sphere.sdk.customers.commands.CustomerPasswordResetCommandTest#outdatedOrWrongToken()}
*
* @see Customer
* @see CustomerCreatePasswordTokenCommand
* @see io.sphere.sdk.customers.queries.CustomerByTokenGet
*/
public final class CustomerPasswordResetCommand extends CommandImpl {
private final String id;
private final Long version;
private final String tokenValue;
private final String newPassword;
private CustomerPasswordResetCommand(final Versioned customer, final String tokenValue, final String newPassword) {
this.id = customer.getId();
this.version = customer.getVersion();
this.tokenValue = tokenValue;
this.newPassword = newPassword;
}
public static CustomerPasswordResetCommand of(final Versioned customer, final CustomerToken token, final String newPassword) {
return of(customer, token.getValue(), newPassword);
}
public static CustomerPasswordResetCommand of(final Versioned customer, final String tokenValue, final String newPassword) {
return new CustomerPasswordResetCommand(customer, tokenValue, newPassword);
}
@Override
protected JavaType jacksonJavaType() {
return SphereJsonUtils.convertToJavaType(Customer.typeReference());
}
@Override
public HttpRequestIntent httpRequestIntent() {
return HttpRequestIntent.of(POST, "/customers/password/reset", SphereJsonUtils.toJsonString(this));
}
public String getId() {
return id;
}
public Long getVersion() {
return version;
}
public String getTokenValue() {
return tokenValue;
}
public String getNewPassword() {
return newPassword;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy