Package org.jboss.system.server.profileservice.persistence.xml

Examples of org.jboss.system.server.profileservice.persistence.xml.PersistedTableValue


    * @param the persisted table
    * @return the persistence table xml meta data
    */  
   protected PersistedTableValue createTableValue(TableValue value)
   {
      PersistedTableValue table = new PersistedTableValue();
      // Fix the entries
      List<PersistedCompositeValue> entries = table.getEntries();
      if(entries == null)
      {
         entries = new ArrayList<PersistedCompositeValue>();
         table.setEntries(entries);
      }
      // Process values
      Collection<CompositeValue> values = value.values();
      for(CompositeValue entry : values)
      {
View Full Code Here


      {
         return new PersistedCompositeValue();
      }
      else if(metaType.isTable())
      {
         return new PersistedTableValue();
      }
      else if(metaType.isArray())
      {
         return new PersistedArrayValue();
      }
View Full Code Here

TOP

Related Classes of org.jboss.system.server.profileservice.persistence.xml.PersistedTableValue

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.