Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setScopes (0.05 sec)

  1. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

            final String state = UuidUtil.create();
            request.getSession().setAttribute(OIC_STATE, state);
            return new AuthorizationCodeRequestUrl(getOicAuthServerUrl(), getOicClientId())//
                    .setScopes(Arrays.asList(getOicScope()))//
                    .setResponseTypes(Arrays.asList("code"))//
                    .setRedirectUri(getOicRedirectUrl())//
                    .setState(state)//
                    .build();
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

        public DirectoryCacheScope getScope() {
            return scope;
        }
    
        /**
         * Sets the cache scope for this directory cache
         * @param scope the cache scope to set
         */
        public void setScope(DirectoryCacheScope scope) {
            this.scope = scope;
        }
    
        /**
         * Gets the maximum age for cached data before requiring refresh
         * @return the maximum cache age in milliseconds
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top