Class ActionInvocationCheckerBase

java.lang.Object
com.atlassian.jira.security.ActionInvocationCheckerBase
Direct Known Subclasses:
DefaultRequestMethodChecker, DefaultXsrfInvocationChecker

public class ActionInvocationCheckerBase extends Object
  • Constructor Details

    • ActionInvocationCheckerBase

      public ActionInvocationCheckerBase()
  • Method Details

    • getMethodName

      protected String getMethodName(String command)
    • getMethod

      protected Method getMethod(Class<?> clazz, String methodName)
      Finds the declared method on the provided class. If the method is not declared on the class, we search recursively up the inheritance hierarchy, stopping at Object.
      Parameters:
      clazz - the class
      methodName - the method name to find
      Returns:
      the method on the class; null if it could not be found.