- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 645 for usar (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/logout/LogoutAction.java
/** * Handles user logout and redirects to the login page. * * @return the HTML response after logout */ @Execute public HtmlResponse index() { final OptionalThing<FessUserBean> userBean = getUserBean(); activityHelper.logout(userBean); final String redirectUrl = userBean.map(user -> ComponentUtil.getSsoManager().logout(user)).orElse(null); fessLoginAssist.logout();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K 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/bsbhv/BsRoleBhv.java
*/ package org.codelibs.fess.opensearch.user.bsbhv; import java.util.List; import java.util.Map; import org.codelibs.fess.opensearch.user.allcommon.EsAbstractBehavior; import org.codelibs.fess.opensearch.user.allcommon.EsAbstractEntity.RequestOptionCall; 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 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java
*/ 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; import org.codelibs.fess.opensearch.user.cbean.ca.RoleCA;
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/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
* This method filters the input URL list to return only those URLs that the specified user * has marked as favorites. * * @param userCode the unique code identifying the user * @param urlList the list of URLs to check against the user's favorites * @return a list of URLs from the input list that are in the user's favorites, or an empty list if the user is not found or has no matching favorites */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
} } /** * Resolves the SPNEGO credential to a user entity. * * This method handles the resolution of SPNEGO credentials by checking * if the user is an admin user or needs to be authenticated through LDAP. * * @param resolver The credential resolver to use for user lookup */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exbhv/GroupBhv.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.exbhv; import java.util.Map; import java.util.regex.Pattern; import java.util.stream.Collectors; import org.codelibs.core.misc.Pair; import org.codelibs.fess.opensearch.user.bsbhv.BsGroupBhv; import org.codelibs.fess.opensearch.user.exentity.Group; import org.codelibs.fess.util.ComponentUtil;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalCause.java
/** * The reason why a cached entry was removed. * * @author Charles Fry * @since 10.0 */ @GwtCompatible public enum RemovalCause { /** * The entry was manually removed by the user. This can result from the user invoking {@link * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}. */ EXPLICIT {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
// ========= /** * Gets the current user bean from the session. * This method returns the concrete FessUserBean class instead of the generic type. * * @return an optional containing the current user bean, or empty if not logged in */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsSearchLogCQ.java
} public void setUser_Equal(String user) { setUser_Term(user, null); } public void setUser_Equal(String user, ConditionOptionCall<TermQueryBuilder> opLambda) { setUser_Term(user, opLambda); } public void setUser_Term(String user) { setUser_Term(user, null); } public void setUser_Term(String user, ConditionOptionCall<TermQueryBuilder> opLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 145.5K bytes - Viewed (0)