com.logicommerce.sdk.Initiator 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;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Initiator class.
*
* @author Logicommerce
* @since 1.0.16
*/
@Retention(RUNTIME)
@Target(METHOD)
public @interface Initiator {
}