Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for userMethod (0.04 sec)

  1. android/guava/src/com/google/common/io/TempFileCreator.java

            Method infoMethod = processHandleClass.getMethod("info");
            Method userMethod = processHandleInfoClass.getMethod("user");
            Method orElseMethod = optionalClass.getMethod("orElse", Object.class);
    
            Object current = currentMethod.invoke(null);
            Object info = infoMethod.invoke(current);
            Object user = userMethod.invoke(info);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            public void testMethod() {
            }
        }
    
        // Test class with method annotations
        static class MethodAnnotatedClass {
            @Secured({ "ROLE_USER" })
            public void userMethod() {
            }
    
            @Secured({ "ROLE_ADMIN" })
            public void adminMethod() {
            }
    
            @Secured({ "ROLE_USER", "ROLE_ADMIN", "ROLE_GUEST" })
            public void multiRoleMethod() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top