Package org.jboss.portal.identity.metadata.profile

Examples of org.jboss.portal.identity.metadata.profile.LocalizedValueMetaData



      Map descValues = new HashMap();
      for (Iterator iterator = meta.getDescription().getValues().iterator(); iterator.hasNext();)
      {
         LocalizedValueMetaData value = (LocalizedValueMetaData)iterator.next();
         descValues.put(value.getLocale(),value.getValue());
      }
      Map dispValues = new HashMap();
      for (Iterator iterator = meta.getDisplayName().getValues().iterator(); iterator.hasNext();)
      {
         LocalizedValueMetaData value = (LocalizedValueMetaData)iterator.next();
         dispValues.put(value.getLocale(),value.getValue());
      }

      description = new LocalizedString(descValues, Locale.ENGLISH);
      displayName = new LocalizedString(dispValues, Locale.ENGLISH);
View Full Code Here

TOP

Related Classes of org.jboss.portal.identity.metadata.profile.LocalizedValueMetaData

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.