Interface JPAMethodContextView
- All Known Implementing Classes:
JPAMethodContext
public interface JPAMethodContextView
The interface provides view on JPA Method Context. JPA Method context can be
used to access custom operations or JPA Entity property access methods.
-
Method Summary
Modifier and TypeMethodDescriptionThe method returns an instance of Object on which the methods/custom operations can be executed.The method returns list of JPA functions that can be executed on the enclosing object.
-
Method Details
-
getEnclosingObject
Object getEnclosingObject()The method returns an instance of Object on which the methods/custom operations can be executed.- Returns:
- instance of enclosing object for the method
-
getJPAFunctionList
List<JPAFunction> getJPAFunctionList()The method returns list of JPA functions that can be executed on the enclosing object.- Returns:
- an instance of list of JPA Function
-