Examples of JahiaUserManagerProvider


Examples of org.jahia.services.usermanager.JahiaUserManagerProvider

   *
   * @return boolean {@code true} if the user comes from a read-only provider
   */
  public boolean isPasswordReadOnly(JahiaUser user) {
    boolean readOnly = true;
    JahiaUserManagerProvider provider = userMgrService.getProvider(user.getProviderName());
    if (provider != null) {
      readOnly = provider.isReadOnly();
    } else {
      logger.warn("Unable to find a provider by name '" + user.getProviderName()
              + "' for the user " + user);
    }

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.