Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for inheritance (0.06 sec)

  1. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            Method method = MethodAnnotatedClass.class.getMethod("nonAnnotatedMethod");
            Secured secured = method.getAnnotation(Secured.class);
            assertNull(secured);
        }
    
        // Test inheritance behavior
        @Secured({ "ROLE_PARENT" })
        static class ParentClass {
            @Secured({ "ROLE_PARENT_METHOD" })
            public void parentMethod() {
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            webApiRequest = new WebApiRequest(mockRequest, customPath);
    
            assertEquals(customPath, webApiRequest.getServletPath());
        }
    
        // Test wrapper functionality inheritance
        public void test_inheritedMethods_areProperlyDelegated() {
            final String customPath = "/api/v1/test";
            final String testHeader = "X-Test-Header";
            final String testHeaderValue = "TestValue";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            // Setup
            final String message = "Test inheritance hierarchy";
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY);
    
            // Execute
            final InvalidQueryException exception = new InvalidQueryException(messageCode, message);
    
            // Verify inheritance hierarchy
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableMultimap.java

      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      // DoNotCall wants this to be final, but we want to override it to return more specific types.
      // Inheritance is closed, and all subtypes are @DoNotCall, so this is safe to suppress.
      @SuppressWarnings("DoNotCall")
      public ImmutableCollection<V> removeAll(@Nullable Object key) {
        throw new UnsupportedOperationException();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 28.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

            assertNull(exception.getCause());
            assertNull(exception.getMessageCode());
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Setup
            final String message = "Test inheritance";
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY);
    
            // Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

                fail("Should throw exception for null property");
            } catch (IllegalArgumentException e) {
                // Expected
            }
        }
    
        // Test inheritance
        public void test_inheritance() {
            assertTrue(messages instanceof FessLabels);
            assertTrue(messages instanceof org.lastaflute.core.message.UserMessages);
        }
    
        // Test method chaining
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top