Package org.springframework.data.jpa.repository

Examples of org.springframework.data.jpa.repository.Lock


          entityGraphAnnotation.type());
    }

    private static final LockModeType findLockModeType(Method method) {

      Lock annotation = AnnotationUtils.findAnnotation(method, Lock.class);
      return annotation == null ? null : (LockModeType) AnnotationUtils.getValue(annotation);
    }
View Full Code Here


   *
   * @return
   */
  LockModeType getLockModeType() {

    Lock annotation = findAnnotation(method, Lock.class);
    return (LockModeType) AnnotationUtils.getValue(annotation);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.jpa.repository.Lock

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.