net.floodlightcontroller.storage
Interface IRowMapper


public interface IRowMapper

Interface for mapping the current row in a result set to an object. This is based on the Spring JDBC support.

Author:
rob

Method Summary
 java.lang.Object mapRow(IResultSet resultSet)
          This method must be implemented by the client of the storage API to map the current row in the result set to a Java object.
 

Method Detail

mapRow

java.lang.Object mapRow(IResultSet resultSet)
This method must be implemented by the client of the storage API to map the current row in the result set to a Java object.

Parameters:
resultSet - The result set obtained from a storage source query
Returns:
The object created from the data in the result set