Package org.beangle.ems.security.profile

Examples of org.beangle.ems.security.profile.UserPropertyMeta


  public List<?> getPropertyValues(String propertyName) {
    return getPropertyValues(getUserProperty(propertyName));
  }

  public Object getPropertyValue(String propertyName, UserProfile profile) {
    UserPropertyMeta prop = getUserProperty(propertyName);
    UserProperty property = profile.getProperty(prop);
    if (null == property) return null;
    return unmarshal(property.getValue(), prop);
  }
View Full Code Here

TOP

Related Classes of org.beangle.ems.security.profile.UserPropertyMeta

Copyright © 2018 www.massapicom. 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.