Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for getPassword (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

                result.setMobile(DfTypeUtil.toString(source.get("mobile")));
                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setPager(DfTypeUtil.toString(source.get("pager")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPhysicalDeliveryOfficeName(DfTypeUtil.toString(source.get("physicalDeliveryOfficeName")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  2. internal/event/target/mqtt.go

    	// MQTT spec.
    	clientID := fmt.Sprintf("%x", time.Now().UnixNano())
    
    	options := mqtt.NewClientOptions().
    		SetClientID(clientID).
    		SetCleanSession(true).
    		SetUsername(args.User).
    		SetPassword(args.Password).
    		SetMaxReconnectInterval(args.MaxReconnectInterval).
    		SetKeepAlive(args.KeepAlive).
    		SetTLSConfig(&tls.Config{RootCAs: args.RootCAs}).
    		AddBroker(args.Broker.String())
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                    final String encodedPassword = ComponentUtil.getComponent(FessLoginAssist.class).encryptPassword(form.password);
                    entity.setOriginalPassword(form.password);
                    entity.setPassword(encodedPassword);
                }
                return entity;
            });
        }
    
        protected Map<String, String> createItem(final String label, final String value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                            AuthenticationContext authCtx = AuthenticationContext.forProxy(session, repo);
                            p.setUserName(authCtx.get(AuthenticationContext.USERNAME));
                            p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
                            p.setNtlmDomain(authCtx.get(AuthenticationContext.NTLM_DOMAIN));
                            p.setNtlmHost(authCtx.get(AuthenticationContext.NTLM_WORKSTATION));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
Back to top