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

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


    * @param value the enum value
    * @return the enum xml meta data
    */
   protected PersistedEnumValue createEnumValue(EnumValue value)
   {
      PersistedEnumValue persistedValue = new PersistedEnumValue();
      persistedValue.setValue(value.getValue());
      return persistedValue;
   }
View Full Code Here


      {
         return new PersistedSimpleValue();
      }
      else if(metaType.isEnum())
      {
         return new PersistedEnumValue();
      }
      else if(metaType.isCollection())
      {
         return new PersistedCollectionValue();
      }
View Full Code Here

TOP

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

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.