Interface JPAMethodContextView
-
- All Known Implementing Classes:
JPAMethodContext
public interface JPAMethodContextViewThe 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetEnclosingObject()The method returns an instance of Object on which the methods/custom operations can be executed.List<JPAFunction>getJPAFunctionList()The method returns list of JPA functions that can be executed on the enclosing object.
-
-
-
Method Detail
-
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
-
-