Package net.sf.hajdbc.sql.AbstractDatabaseClusterConfiguration

Examples of net.sf.hajdbc.sql.AbstractDatabaseClusterConfiguration.Property


  {
    List<Property> properties = new ArrayList<Property>(this.properties.size());
   
    for (Map.Entry<String, String> entry: this.properties.entrySet())
    {
      Property property = new Property();
      property.setName(entry.getKey());
      property.setValue(entry.getValue());
      properties.add(property);
    }
   
    return properties.toArray(new Property[properties.size()]);
  }
View Full Code Here


  {
    List<Property> properties = new ArrayList<Property>(this.properties.size());
   
    for (Map.Entry<String, String> entry: this.properties.entrySet())
    {
      Property property = new Property();
      property.setName(entry.getKey());
      property.setValue(entry.getValue());
      properties.add(property);
    }
   
    return properties.toArray(new Property[properties.size()]);
  }
View Full Code Here

TOP

Related Classes of net.sf.hajdbc.sql.AbstractDatabaseClusterConfiguration.Property

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.