001 package railo.runtime.query.caster; 002 003 import java.io.IOException; 004 import java.sql.ResultSet; 005 import java.sql.SQLException; 006 007 public class OracleOpaqueCast implements Cast { 008 009 /** 010 * @see railo.runtime.query.caster.Cast#toCFType(int, java.sql.ResultSet, int) 011 */ 012 public Object toCFType(int type, ResultSet rst, int columnIndex) throws SQLException, IOException { 013 return _OracleOpaqueCast.toCFType(rst, columnIndex); 014 } 015 }