com.logicommerce.sdk.definition.DataDefinition 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;
/**
* DataDefinition interface.
*
* @author Logicommerce
* @since 1.1.13
*/
public interface DataDefinition extends ConnectorDefinition {
/** {@inheritDoc} */
@Override
default ConnectorType getType() {
return ConnectorType.DATA;
}
}