Package com.jpoweredcart.common.entity.setting

Examples of com.jpoweredcart.common.entity.setting.Setting


public class SettingRowMapper implements RowMapper<Setting>{

  @Override
  public Setting mapRow(ResultSet rs, int rowNum) throws SQLException {
   
    Setting setting = new Setting();
    setting.setId(rs.getInt("setting_id"));
    setting.setStoreId(rs.getInt("store_id"));
    setting.setGroup(rs.getString("group"));
    setting.setKey(rs.getString("key"));
    setting.setValue(rs.getString("value"));
    setting.setSerialized(rs.getBoolean("serialized"));
    return setting;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.common.entity.setting.Setting

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.