it.uniroma2.art.semanticturkey.generation.annotation.DoNotGenerateController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of st-codegen-annotations Show documentation
Show all versions of st-codegen-annotations Show documentation
this module contains the definition of available custom annotations for code generation of the service controllers
package it.uniroma2.art.semanticturkey.generation.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* this annotation is used to inform the {@link STServiceProcessor} not to generate a controller for the
* service annotated with it
*
* @author Manuel Fiorelli <[email protected]>
* @author Armando Stellato <[email protected]>
* @author Andrea Turbati <[email protected]>
*
*/
@Retention(value = RetentionPolicy.SOURCE)
@Target(value = { ElementType.TYPE })
public @interface DoNotGenerateController {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy