Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,521 for Permission (0.24 sec)

  1. src/main/webapp/WEB-INF/fe.tld

      </function>
    
      <function>
        <description>Check if user has a permission.</description>
        <name>permission</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>boolean hasActionRole(java.lang.String)</function-signature>
        <example>${fe:permission("admin-dashboard")}</example>
      </function>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String THUMBNAIL_MANAGER = "thumbnailManager";
    
        private static final String SSO_MANAGER = "ssoManager";
    
        private static final String PERMISSION_HELPER = "permissionHelper";
    
        private static final String QUERY_PARSER = "queryParser";
    
        private static final String DOCUMENT_HELPER = "documentHelper";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                return true;
            }
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            for (final String permission : ldapUser.getPermissions()) {
                if (!systemHelper.isUserPermission(permission)) {
                    return true;
                }
            }
            return false;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/DES.java

    // DesCipher - the DES encryption method
    //
    // The meat of this code is by Dave Zimmerman <******@****.***>, and is:
    //
    // Copyright (c) 1996 Widget Workshop, Inc. All Rights Reserved.
    //
    // Permission to use, copy, modify, and distribute this software
    // and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and
    // without fee is hereby granted, provided that this copyright notice is kept
    // intact.
    //
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  5. pom.xml

    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/copyright</src>
    							<dst>/usr/share/doc/fess/copyright</dst>
    						</data>
    						<!-- Adds and sets permission on default directories -->
    						<data>
    							<type>template</type>
    							<paths>
    								<path>${packaging.fess.pid.dir}</path>
    							</paths>
    							<mapper>
    								<type>perm</type>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			</li>
    			</c:if>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 15 20:55:28 GMT 2021
    - 17.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            return OptionalThing.of(new FessUserBean(new TestUser(name, permissions)));
        }
    
        static class TestUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            private String name;
    
            private String[] permissions;
    
            TestUser(String name, String[] permissions) {
                this.name = name;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.UPDATE_PERMISSION.name());
            valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-"));
            valueMap.put("permissions",
                    user.map(u -> stream(u.getPermissions()).get(stream -> stream.collect(Collectors.joining(permissionSeparator))))
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  9. NOTICE

    --------------------------------------------------------------------------------
    https://github.com/lmenezes/elasticsearch-kopf
    
    The MIT License (MIT)
    
    Copyright (c) 2014 Leonardo Menezes
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Jan 15 23:53:08 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            }
            if (permission.startsWith(fessConfig.getRoleSearchUserPrefix())
                    && permission.length() > fessConfig.getRoleSearchUserPrefix().length()) {
                return aclPrefix + userPrefix + permission.substring(fessConfig.getRoleSearchUserPrefix().length());
            }
            if (permission.startsWith(fessConfig.getRoleSearchGroupPrefix())
                    && permission.length() > fessConfig.getRoleSearchGroupPrefix().length()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
Back to top