Пример #1
0
 public void onAfter(Connection conn, ResultSet rs) throws SQLException {
   if (null != after) getContext().setResult(after.invoke(conn, rs, this));
 }
Пример #2
0
 public void onBefore(Connection conn) throws SQLException {
   if (null != before) before.invoke(conn, null, this);
 }