Imagine there is the @Authorized annotation, which can be placed on methods. If you were writing this annotation's processing code, how would you check if the @Authorized is present on the processing object's class method?
Let the code look like this:
Method method = TestClass.class.getMethod("getAllUsers");
result = ...
Now write the missing part that will check if method actually has the annotation. Remember the ; symbol at the end of the line.