Package org.apache.isis.core.objectstore.jdo.applib.annotations

Examples of org.apache.isis.core.objectstore.jdo.applib.annotations.Auditable


    }

    @Override
    public void process(ProcessClassContext processClassContext) {
        final Class<?> cls = processClassContext.getCls();
        final Auditable annotation = Annotations.getAnnotation(cls, Auditable.class);
        if (annotation == null) {
            return;
        }
        FacetUtil.addFacet(new AuditableFacetAnnotationInJdoApplib(
                processClassContext.getFacetHolder()));
View Full Code Here

TOP

Related Classes of org.apache.isis.core.objectstore.jdo.applib.annotations.Auditable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.