Skip to content

Commit

Permalink
feat: add support to annotation
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Apr 19, 2024
1 parent 6acf896 commit ab442ec
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
import javax.annotation.processing.Filer;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.Element;
import javax.lang.model.element.ElementKind;
import javax.lang.model.element.TypeElement;
Expand All @@ -39,6 +41,7 @@


@SupportedAnnotationTypes({"jakarta.nosql.Entity", "jakarta.nosql.MappedSuperclass"})
@SupportedSourceVersion(SourceVersion.RELEASE_17)
public class EntityProcessor extends AbstractProcessor {

private static final Logger LOGGER = Logger.getLogger(EntityProcessor.class.getName());
Expand Down

0 comments on commit ab442ec

Please sign in to comment.