- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 284 for roles2 (0.04 seconds)
-
src/main/java/org/codelibs/fess/opensearch/user/cbean/cq/bs/BsRoleCQ.java
public void filtered(FilteredCall<RoleCQ, RoleCQ> filteredLambda) { filtered(filteredLambda, null); } public void filtered(FilteredCall<RoleCQ, RoleCQ> filteredLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) { bool((must, should, mustNot, filter) -> { filteredLambda.callback(must, filter); }, opLambda); } public void not(OperatorCall<RoleCQ> notLambda) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 13.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/exbhv/UserBhv.java
import org.dbflute.exception.IllegalBehaviorStateException; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class UserBhv extends BsUserBhv { private static final String ROLES = "roles"; private static final String GROUPS = "groups"; private static final String PASSWORD = "password"; private static final String NAME = "name"; private String indexName = null; @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 2.8K bytes - Click Count (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 * @return HTML response redirecting to the appropriate admin interface */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
/** * Exception thrown when user role authentication fails during login attempts. * This exception is used to indicate that a user does not have the required role * to access a specific action or resource. * */ public class UserRoleLoginException extends RuntimeException { private static final long serialVersionUID = 1L; /** The action class that requires specific user roles */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** OpenID Connect default roles. */ @Size(max = 1000) public String oicDefaultRoles; /** SAML service provider base URL. */ @Size(max = 1000) public String samlSpBaseUrl; /** SAML attribute name for group membership. */ @Size(max = 1000) public String samlAttributeGroupName; /** SAML attribute name for role membership. */ @Size(max = 1000)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
return entity; }); } /** * Registers available roles and labels for use in web config forms. * Includes role types, label types, and label setting configuration. * * @param data the render data to register the roles and labels with */ protected void registerRolesAndLabels(final RenderData data) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 22.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
LabelType labelType2 = new LabelType(); labelType2.setName("Test Label 2"); labelType2.setValue("test2"); labelType2.setPermissions(new String[] { "role1", "role2" }); labelType2.setVirtualHost("example.com"); // Locale is derived from value, not set directly labelType2.setIncludedPaths("/admin.*"); labelType2.setExcludedPaths("");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.7K bytes - Click Count (0) -
src/main/resources/fess_label.properties
labels.oic_base_url=Base URL labels.oic_default_groups=Default Groups labels.oic_default_roles=Default Roles labels.general_menu_saml=SAML labels.saml_sp_base_url=SP Base URL labels.saml_attribute_group_name=Group Attribute Name labels.saml_attribute_role_name=Role Attribute Name labels.saml_default_groups=Default Groups labels.saml_default_roles=Default Roles labels.general_menu_spnego=SPNEGO labels.spnego_krb5_conf=Krb5 Config
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapUser.java
final LdapManager ldapManager = ComponentUtil.getLdapManager(); permissions = distinct(ArrayUtils.addAll(ldapManager.getRoles(this, baseDn, accountFilter, groupFilter, roles -> { permissions = distinct(roles); ComponentUtil.getActivityHelper().permissionChanged(OptionalThing.of(new FessUserBean(this)));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
final String jwtClaim = "{\"roles\":[\"admin\",\"user\"],\"groups\":[\"group1\",\"group2\"]}"; final Map<String, Object> attributes = new HashMap<>(); authenticator.parseJwtClaim(jwtClaim, attributes); assertTrue(attributes.get("roles") instanceof List); @SuppressWarnings("unchecked") final List<Object> roles = (List<Object>) attributes.get("roles"); assertEquals(2, roles.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0)