![JAR search and dependency download from the Maven repository](/logo.png)
org.tentackle.apt.pdo.DomainObjectServiceAnnotationProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tentackle-pdo Show documentation
Show all versions of tentackle-pdo Show documentation
The PDO application layer of the Tentackle Framework
/*
* Tentackle - https://tentackle.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.tentackle.apt.pdo;
import org.tentackle.apt.visitor.ClassArgConstructorVisitor;
import org.tentackle.common.AnnotationProcessor;
import org.tentackle.pdo.PersistentDomainObject;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.lang.model.element.Element;
import javax.tools.Diagnostic;
/**
* Annotation processor for the {@code @DomainObjectService} annotation.
* Enforces the implementation of the following constructors:
*
*
* - ({@link PersistentDomainObject})
* - ()
*
*
* @author harald
*/
@SupportedAnnotationTypes("org.tentackle.pdo.DomainObjectService")
@AnnotationProcessor
public class DomainObjectServiceAnnotationProcessor extends AbstractDomainServiceAnnotationProcessor {
private final ClassArgConstructorVisitor pdoVisitor = new ClassArgConstructorVisitor(this, PersistentDomainObject.class);
/**
* Creates the processor.
*/
public DomainObjectServiceAnnotationProcessor() {
// see -Xlint:missing-explicit-ctor since Java 16
}
@Override
protected void processClass(Element element) {
super.processClass(element);
if (!verifyConstructor(element, noArgsVisitor)) {
processingEnv.getMessager().printMessage(
Diagnostic.Kind.ERROR,
"class " + element + " needs a no-args constructor", element);
}
if (!verifyConstructor(element, pdoVisitor)) {
processingEnv.getMessager().printMessage(
Diagnostic.Kind.ERROR,
"class " + element + " needs constructor (PersistentDomainObject)", element);
}
verifyImplements(element, "org.tentackle.pdo.DomainObject");
verifyStatelessDomainLogic(element);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy