
br.eti.clairton.migrator.rest.Rest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of migrator-rest Show documentation
Show all versions of migrator-rest Show documentation
Migrator Rest for migrator
The newest version!
package br.eti.clairton.migrator.rest;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import javax.inject.Qualifier;
/**
* Qualifier para Migrator Rest.
*
* @author Clairton Rodrigo Heinzen [email protected]
*/
@Qualifier
@Target(value = { METHOD, TYPE, FIELD, PARAMETER })
@Retention(RUNTIME)
public @interface Rest {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy