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