
com.commercetools.payment.model.PaymentInteractionData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The commercetools java payment project intend is to make payment integration easy
The newest version!
package com.commercetools.payment.model;
import io.sphere.sdk.client.SphereClient;
/**
* This base interface ensures that all actions taken by the adapter
* can use a provided {@link SphereClient} instance and do not have to take care of creating one on their own.
*
* Created by mgatz on 7/20/16.
*/
public interface PaymentInteractionData {
/**
* @return a shop provided valid sphere client
*/
SphereClient getSphereClient();
/**
* Get a possibly configured value.
* @param name the name of the value
* @return the value or null
*/
String getConfigByName(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy