Package org.eweb4j.orm.dao.config.bean

Examples of org.eweb4j.orm.dao.config.bean.Property


*/
public class DAOConfigBeanCreator {
  public static DBInfoConfigBean getDAOBean(){
    DBInfoConfigBean dcb = new DBInfoConfigBean();
    List<Property> properties = new ArrayList<Property>();
    Property p = new Property();
    p.setKey("");
    p.setValue("");
    properties.add(p);
    dcb.setProperty(properties);
    return dcb;
  }
View Full Code Here

TOP

Related Classes of org.eweb4j.orm.dao.config.bean.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.