The getClassOfCaller method of the PolicyEngine Class contains the following signatures:
getClassOfCaller()
getClassOfCaller(Class[] skip)
Retrieves the class type of the immediate caller of this method.
public static Class getClassOfCaller();
Returns the class type of the immediate caller of this method.
Retrieves the class type of the caller of this method, skipping any classes found in the specified skip set.
public static Class getClassOfCaller(Class[] skip);
Returns the class type of the caller.
skip | The set of classes to ignore. |