1 package com.atlassian.plugins.rest.common.sal.websudo.nopackageprotection;
2
3 import com.atlassian.sal.api.websudo.WebSudoRequired;
4
5 public class MethodProtectedByMethodAnnotation {
6
7 public void aMethod() {
8 }
9
10 @WebSudoRequired
11 public void bMethod() {
12 }
13 }