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

com.commercetools.sunrise.myaccount.addressbook.changeaddress.ChangeAddressControllerAction Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.myaccount.addressbook.changeaddress;

import com.commercetools.sunrise.framework.controllers.ControllerAction;
import com.commercetools.sunrise.myaccount.addressbook.AddressFormData;
import com.commercetools.sunrise.framework.viewmodels.content.addresses.AddressWithCustomer;
import com.google.inject.ImplementedBy;
import io.sphere.sdk.customers.Customer;

import java.util.concurrent.CompletionStage;
import java.util.function.BiFunction;

@ImplementedBy(DefaultChangeAddressControllerAction.class)
@FunctionalInterface
public interface ChangeAddressControllerAction extends ControllerAction, BiFunction> {

    @Override
    CompletionStage apply(final AddressWithCustomer addressWithCustomer, final AddressFormData formData);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy