Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRequestedTimeZone (0.06 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            // Verify that empty optional is returned
            assertNotNull(result);
            assertFalse(result.isPresent());
        }
    
        // Test getRequestedTimeZone() method
        public void test_getRequestedTimeZone() {
            // Execute
            TimeZone result = provider.getRequestedTimeZone(requestManager);
    
            // Verify that the central time zone is returned
            assertNotNull(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProvider.java

        public OptionalThing<TimeZone> findBusinessTimeZone(final ActionRuntime runtimeMeta, final RequestManager requestManager) {
            return OptionalObject.empty();
        }
    
        @Override
        public TimeZone getRequestedTimeZone(final RequestManager requestManager) { // not null
            return centralTimeZone; // you can change it if you like
        }
    
        @Override
        public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top