Package org.apache.onami.persist

Examples of org.apache.onami.persist.Transactional


    private void checkTransactionalAnnotation( Class<? extends TransactionalTask> taskType )
    {
        try
        {
            final Method method = taskType.getMethod( DO_TRANSACTIONAL );
            final Transactional annotation = method.getAnnotation( Transactional.class );
            checkNotNull( annotation, "@Transactional annotation missing on %s.%s", taskType.getSimpleName(),
                          method.getName() );
        }
        catch ( NoSuchMethodException e )
        {
View Full Code Here

TOP

Related Classes of org.apache.onami.persist.Transactional

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.