コード例 #1
0
    @Override
    public DepositProductData mapRow(
        final ResultSet rs, @SuppressWarnings("unused") final int rowNum) throws SQLException {

      final Long id = rs.getLong("id");
      final String name = rs.getString("name");

      return DepositProductData.lookup(id, name);
    }