![JAR search and dependency download from the Maven repository](/logo.png)
com.logicommerce.sdk.definition.implementations.PaymentSystemDefinitionImpl 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.implementations;
import com.logicommerce.sdk.definition.PaymentSystemDefinition;
/**
* PaymentSystemDefinitionImpl class.
*
* @author Logicommerce
* @since 1.0.16
*/
public class PaymentSystemDefinitionImpl extends ConnectorDefinitionImpl implements PaymentSystemDefinition {
public static class Builder extends ConnectorDefinitionImpl.Builder {
@Override
protected Builder returnThis() {
return this;
}
@Override
public PaymentSystemDefinition build() {
PaymentSystemDefinitionImpl connector = new PaymentSystemDefinitionImpl();
setAttributes(connector);
return connector;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy