All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.customers.commands.CustomerCreateTokenCommand Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
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.CustomerToken;
import io.sphere.sdk.json.SphereJsonUtils;

import static io.sphere.sdk.http.HttpMethod.POST;

/**
 * @deprecated use {@link CustomerCreatePasswordTokenCommand} instead
 */
@Deprecated
public final class CustomerCreateTokenCommand extends CommandImpl {
    private final String email;

    private CustomerCreateTokenCommand(final String customerEmail) {
        this.email = customerEmail;
    }

    /**
     * @deprecated use {@link CustomerCreatePasswordTokenCommand} instead
     * @param customerEmail email of the customer to create the token
     * @return CustomerCreateTokenCommand
     */
    @Deprecated
    public static CustomerCreateTokenCommand of(final String customerEmail) {
        return new CustomerCreateTokenCommand(customerEmail);
    }

    @Override
    protected JavaType jacksonJavaType() {
        return SphereJsonUtils.convertToJavaType(CustomerToken.typeReference());
    }

    @Override
    public HttpRequestIntent httpRequestIntent() {
        return HttpRequestIntent.of(POST, "/customers/password-token", SphereJsonUtils.toJsonString(this));
    }

    public String getEmail() {
        return email;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy