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

com.ingenico.direct.ClientInterface Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct;

import java.io.Closeable;
import java.util.concurrent.TimeUnit;

import com.ingenico.direct.logging.LoggingCapable;
import com.ingenico.direct.merchant.MerchantClientInterface;

/**
 * Ingenico ePayments platform client.
 * 

* This client and all its child clients are bound to one specific value for the X-GCS-ClientMetaInfo header. * To get a new client with a different header value, use {@link #withClientMetaInfo(String)}. *

* Thread-safe. */ public interface ClientInterface extends Closeable, LoggingCapable { /** * Returns a new {@link Client} which uses the passed meta data for the * X-GCS-ClientMetaInfo header. * * @param clientMetaInfo * JSON string containing the meta data for the client * @throws MarshallerSyntaxException * if the given clientMetaInfo is not a valid JSON string */ Client withClientMetaInfo(String clientMetaInfo); /** * Utility method that delegates the call to this client's communicator. * @see Communicator#closeIdleConnections(long, TimeUnit) * @see PooledConnection#closeIdleConnections(long, TimeUnit) */ void closeIdleConnections(long idleTime, TimeUnit timeUnit); /** * Utility method that delegates the call to this client's communicator. * @see Communicator#closeExpiredConnections() * @see PooledConnection#closeExpiredConnections() */ void closeExpiredConnections(); /** * Resource /v2/{merchantId} * */ MerchantClientInterface merchant(String merchantId); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy