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

io.sphere.sdk.customers.expansion.CustomerExpansionModelImpl Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.customers.expansion;

import io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel;
import io.sphere.sdk.expansion.ExpansionModelImpl;

import javax.annotation.Nullable;
import java.util.List;

final class CustomerExpansionModelImpl extends ExpansionModelImpl implements CustomerExpansionModel {
    CustomerExpansionModelImpl() {
        super();
    }

    CustomerExpansionModelImpl(@Nullable final List parentPath, @Nullable final String path) {
        super(parentPath, path);
    }

    @Override
    public CustomerGroupExpansionModel customerGroup() {
        return CustomerGroupExpansionModel.of(buildPathExpression(), "customerGroup");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy