- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,293 for unser (0.15 sec)
-
src/main/resources/fess_indices/fess/de/stopwords.txt
seines selbst sich sie ihnen sind so solche solchem solchen solcher solches soll sollte sondern sonst über um und uns unse unsem unsen unser unses unter viel vom von vor während war waren warst was weg weil weiter welche welchem welchen welcher welches wenn werde werden
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Nov 27 12:59:36 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java
/* * Copyright 2012-2025 CodeLibs Project and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.user/user.bulk
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jan 12 13:23:26 UTC 2023 - 166 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.user/user.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 2.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.user.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
return user.getRoleNames(); } public String[] getGroups() { return user.getGroupNames(); } public boolean isEditable() { return user.isEditable(); } public boolean hasRole(final String role) { return stream(user.getRoleNames()).get(stream -> stream.anyMatch(s -> s.equals(role))); } public boolean hasRoles(final String[] acceptedRoles) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
} /** * Redirects an authenticated user to the appropriate admin interface based on their roles. * Users with admin roles are redirected to the dashboard, while other users are redirected * to their designated admin action class or to the root if no specific action is available. * * @param user the authenticated user bean containing role information
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.cbean.bs; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionBean; import org.codelibs.fess.opensearch.user.bsentity.dbmeta.RoleDbm; import org.codelibs.fess.opensearch.user.cbean.RoleCB;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
// Helper method to create test user private User createTestUser(String username, String password) { User user = new User(); user.setName(username); user.setPassword(password); user.setRoles(new String[] { "role1", "role2" }); user.setGroups(new String[] { "group1", "group2" }); return user; } // Test LdapManager implementation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
// Test with username containing special characters String username = "user@domain.com"; FessUserNotFoundException exception = new FessUserNotFoundException(username); assertNotNull(exception); assertEquals("User is not found: user@domain.com", exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0)