Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Attribut (0.17 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            final Attribute attr = new BasicAttribute(name, value);
            final ModificationItem mod = new ModificationItem(DirContext.ADD_ATTRIBUTE, attr);
            modifyList.add(mod);
        }
    
        protected void modifyReplaceEntry(final List<ModificationItem> modifyList, final String name, final String value) {
            final Attribute attr = new BasicAttribute(name, value);
    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)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default String getLdapMemberofAttribute() {
            return getSystemProperty(Constants.LDAP_MEMBEROF_ATTRIBUTE, "memberOf");
        }
    
        default void setLdapMemberofAttribute(final String value) {
            setSystemProperty(Constants.LDAP_MEMBEROF_ATTRIBUTE, value);
        }
    
        default void setStorageEndpoint(final String value) {
            setSystemProperty(Constants.STORAGE_ENDPOINT, value);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            }
            catch ( SmbException e ) {
                if ( e.getNtStatus() != 0xC00000BB ) {
                    throw e;
                }
                throw new SmbUnsupportedOperationException("Attribute not supported by server");
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top