All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.uniroma2.art.semanticturkey.generation.annotation.DoNotGenerateController Maven / Gradle / Ivy

Go to download

this module contains the definition of available custom annotations for code generation of the service controllers

There is a newer version: 13.0
Show newest version
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