Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for user1s (0.81 sec)

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

            }
        }
    
        public void delete(final User user) {
            if (!fessConfig.isLdapAdminEnabled(user.getName())) {
                return;
            }
    
            final Supplier<Hashtable<String, String>> adminEnv = this::createAdminEnv;
            final String userDN = fessConfig.getLdapAdminUserSecurityPrincipal(user.getName());
    
            stream(user.getGroupNames()).of(stream -> stream.forEach(name -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * JavaBeansの仕様にしたがってデキャピタライズを行ないます。大文字が2つ以上続く場合は、小文字にならないので注意してください。
         * <p>
         * 次のように使います.
         * </p>
         *
         * <pre>
         * StringUtil.capitalize("UserId")  = "userId"
         * StringUtil.capitalize("ABC")  = "ABC"
         * </pre>
         *
         * @param name
         *            名前
         * @return 結果の文字列
         */
        public static String decapitalize(final String name) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    import java.io.UnsupportedEncodingException;
    import java.util.HashMap;
    
    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p> Applications can use the methods <code>getLocalHost</code>,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

        }
    
        protected void registerModifiedProperty(String propertyName) {
            __modifiedProperties.addPropertyName(propertyName);
            registerSpecifiedProperty(propertyName); // synchronize if exists, basically for user's manual call
        }
    
        public void modifiedToSpecified() {
            if (__modifiedProperties.isEmpty()) {
                return; // basically no way when called in Framework (because called when SpecifyColumn exists)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NbtAddress.java

    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.NetbiosAddress;
    import jcifs.NetbiosName;
    
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p>
     * Applications can use the methods <code>getLocalHost</code>,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/cbean/UserCB.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.user.cbean;
    
    import org.codelibs.fess.es.user.cbean.bs.BsUserCB;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class UserCB extends BsUserCB {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 800 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/cbean/cq/UserCQ.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.user.cbean.cq;
    
    import org.codelibs.fess.es.user.cbean.cq.bs.BsUserCQ;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class UserCQ extends BsUserCQ {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 806 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String USER_CODE_REQUEST_PARAMETER = "user.code.request.parameter";
    
        /** The key of the configuration. e.g. 20 */
        String USER_CODE_MIN_LENGTH = "user.code.min.length";
    
        /** The key of the configuration. e.g. 100 */
        String USER_CODE_MAX_LENGTH = "user.code.max.length";
    
        /** The key of the configuration. e.g. [a-zA-Z0-9_]+ */
        String USER_CODE_PATTERN = "user.code.pattern";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

     */
    package org.codelibs.fess.es.user.cbean.bs;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.es.user.allcommon.EsAbstractConditionBean;
    import org.codelibs.fess.es.user.bsentity.dbmeta.UserDbm;
    import org.codelibs.fess.es.user.cbean.UserCB;
    import org.codelibs.fess.es.user.cbean.ca.UserCA;
    import org.codelibs.fess.es.user.cbean.ca.bs.BsUserCA;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

        @Override
        protected Class<? extends User> typeOfSelectedEntity() {
            return User.class;
        }
    
        @Override
        protected Class<User> typeOfHandlingEntity() {
            return User.class;
        }
    
        @Override
        protected Class<UserCB> typeOfHandlingConditionBean() {
            return UserCB.class;
        }
    
        public ListResultBean<User> selectList(CBCall<UserCB> cbLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top