![JAR search and dependency download from the Maven repository](/logo.png)
com.logicommerce.sdk.definition.ExpressCheckoutDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.definition;
import com.logicommerce.sdk.enums.ConnectorType;
/**
* This interface represents the definition for an express checkout connector.
* It extends the ConnectorDefinition interface.
*
* @see ConnectorDefinition
* @author LogiCommerce
* @since 1.3.5
*/
public interface ExpressCheckoutDefinition extends ConnectorDefinition {
/**
* Returns the type of the connector, which is ConnectorType.EXPRESS_CHECKOUT.
*
* @return The type of the connector.
*/
@Override
default ConnectorType getType() {
return ConnectorType.EXPRESS_CHECKOUT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy