dev.alangomes.springspigot.command.Subcommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spigot-spring-boot-starter Show documentation
Show all versions of spigot-spring-boot-starter Show documentation
Spring support for spigot plugins
package dev.alangomes.springspigot.command;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Indexed;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Utility annotation to mark a component as subcommand.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Component
@Indexed
public @interface Subcommand {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy