Package com.jpoweredcart.common.entity.setting

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


public class ExtensionRowMapper implements RowMapper<Extension>{

  @Override
  public Extension mapRow(ResultSet rs, int rowNum) throws SQLException {
    Extension ex = new Extension();
    ex.setId(rs.getInt("extension_id"));
    ex.setType(rs.getString("type"));
    ex.setCode(rs.getString("code"));
    return ex;
  }
View Full Code Here

TOP

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

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.