Package org.jboss.hibernate.deployers.metadata

Examples of org.jboss.hibernate.deployers.metadata.BaseNamedElement


//      assertEquals("entities-test", props.getProperty(org.hibernate.cache.jbc.builder.MultiplexingCacheInstanceManager.ENTITY_CACHE_RESOURCE_PROP));
   }
  
   private static BaseNamedElement createBaseNamedElement(String name, Object value)
   {
      BaseNamedElement element = new BaseNamedElement();
      element.setName(name);
      element.setValue(value);
      return element;
   }
View Full Code Here


   public Set<BaseNamedElement> getConfigurationElements()
   {
      Set<BaseNamedElement> result = new HashSet<BaseNamedElement>();
      for (Map.Entry<String, Object> entry : configurationElements.entrySet())
      {
         BaseNamedElement element = new BaseNamedElement();
         element.setName(entry.getKey());
         element.setValue(entry.getValue());
         result.add(element);
      }
      return result;
   }
View Full Code Here

TOP

Related Classes of org.jboss.hibernate.deployers.metadata.BaseNamedElement

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.