Deprecated API

Deprecated Classes
com.ibm.as400.ui.util.AS400CnameIBMFormatter
          Use the AS400CnameFormatter class with setMaxLength of AS400Formatter.IBM_OBJECT_NAME_MAX_LENGTH. 
com.ibm.as400.access.AS400DateTimeConverter
          This class has been replaced by the DateTimeConverter class. 
com.ibm.as400.ui.util.AS400NameIBMFormatter
          Use the AS400NameFormatter class with setMaxLength of AS400Formatter.IBM_OBJECT_NAME_MAX_LENGTH. 
com.ibm.as400.ui.util.AS400SnameIBMFormatter
          Use the AS400SnameFormatter class with setMaxLength of AS400Formatter.IBM_OBJECT_NAME_MAX_LENGTH. 
 

Deprecated Fields
com.ibm.as400.access.JobList.ALL
          Use the selection constant that corresponds to the particular job selection criteria you are filtering. For example, to select jobs for all job names, do: JobList list = new JobList(system); list.addJobSelectionCriteria(JobList.SELECTION_JOB_NAME, JobList.SELECTION_JOB_NAME_ALL); For backwards compatibility, this has the same effect: JobList list = new JobList(system); list.setName(JobList.SELECTION_JOB_NAME_ALL);  
 

Deprecated Methods
com.ibm.as400.access.AS400JDBCResultSet.getBigDecimal(int, int)
          Use getBigDecimal(int) instead. 
com.ibm.as400.access.AS400JDBCRowSet.getBigDecimal(int, int)
          Use getBigDecimal(int) instead. 
com.ibm.as400.access.AS400JDBCCallableStatement.getBigDecimal(int, int)
          Use getBigDecimal(int) or getBigDecimal(String) instead. 
com.ibm.as400.access.AS400JDBCResultSet.getBigDecimal(String, int)
          Use getBigDecimal(String) instead. 
com.ibm.as400.access.AS400JDBCRowSet.getBigDecimal(String, int)
          Use getBigDecimal(String) instead. 
com.ibm.as400.access.AS400ConnectionPool.getConnection(String, String)
          Use getConnection(String systemName, String userID, String password) instead. 
com.ibm.as400.access.AS400ConnectionPool.getConnection(String, String, int)
          Use getConnection(String systemName, String userID, String password, int service) instead. 
com.ibm.as400.data.PcmlMessageLog.getLogFileName()
          Replaced by com.ibm.as400.access.Trace.getFileName(). 
com.ibm.as400.data.PcmlMessageLog.getLogStream()
          Replaced by com.ibm.as400.access.Trace.getPrintWriter(). 
com.ibm.as400.access.AS400.getProfileToken()
          Use getProfileToken(int, int) instead. 
com.ibm.as400.access.AS400ConnectionPool.getSecureConnection(String, String)
          Use getSecureConnection(String systemName, String userID, String password) instead. 
com.ibm.as400.access.AS400ConnectionPool.getSecureConnection(String, String, int)
          Use getConnection(String systemName, String userID, String password, int service) instead. 
com.ibm.as400.access.AS400JDBCResultSet.getUnicodeStream(int)
          Use getCharacterStream(int) instead. 
com.ibm.as400.access.AS400JDBCRowSet.getUnicodeStream(int)
          Use getCharacterStream(int) instead. 
com.ibm.as400.access.AS400JDBCResultSet.getUnicodeStream(String)
          Use getCharacterStream(String) instead. 
com.ibm.as400.access.AS400JDBCRowSet.getUnicodeStream(String)
          Use getCharacterStream(String) instead. 
com.ibm.as400.access.AS400JDBCDataSource.isPackageClear()
            
com.ibm.as400.data.PcmlMessageLog.isTraceEnabled()
          Replaced by com.ibm.as400.access.Trace.isTracePCMLOn(). 
com.ibm.as400.data.PcmlMessageLog.logError(Object)
          Replaced by com.ibm.as400.access.Trace.log(int category, String message). 
com.ibm.as400.data.PcmlMessageLog.logError(Object, Throwable)
          Replaced by com.ibm.as400.access.Trace.log(int category, String message, Throwable e). 
com.ibm.as400.data.PcmlMessageLog.printStackTrace(Throwable)
          Use java.lang.Throwable.printStackTrace(PrintWriter w). 
com.ibm.as400.data.PcmlMessageLog.setLogFileName(String)
          Replaced by com.ibm.as400.access.Trace.setFileName(String fileName). 
com.ibm.as400.data.PcmlMessageLog.setLogStream(OutputStream)
          Replaced by com.ibm.as400.access.Trace.setPrintWriter(PrintWriter obj). 
com.ibm.as400.access.AS400JDBCDataSource.setPackageClear(boolean)
            
com.ibm.as400.data.PcmlMessageLog.setTraceEnabled(boolean)
          Replaced by com.ibm.as400.access.Trace.setTracePCMLOn(boolean tracePCML). 
com.ibm.as400.access.AS400JDBCPreparedStatement.setUnicodeStream(int, InputStream, int)
          Use setCharacterStream(int, Reader, int) instead. 
com.ibm.as400.data.PcmlMessageLog.traceErr(Object)
          Replaced by com.ibm.as400.access.Trace.log(int category, String message). 
com.ibm.as400.data.PcmlMessageLog.traceOut(Object)
          Replaced by com.ibm.as400.access.Trace.log(int category, String message). 
 

Deprecated Constructors
com.ibm.as400.access.SCS3812Writer(OutputStream)
          Replaced by SCS3812Writer(OutputStream, int, AS400). Any SCS3812Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS3812Writer(OutputStream, int)
          Replaced by SCS3812Writer(OutputStream, int, AS400). Any SCS3812Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS3812Writer(OutputStream, String)
          Replaced by SCS3812Writer(OutputStream, int, AS400). Any SCS3812Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5219Writer(OutputStream)
          Replaced by SCS5219Writer(OutputStream, int, AS400). Any SCS5219Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5219Writer(OutputStream, int)
          Replaced by SCS5219Writer(OutputStream, int, AS400). Any SCS5219Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5219Writer(OutputStream, String)
          Replaced by SCS5219Writer(OutputStream, int, AS400). Any SCS5219Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5224Writer(OutputStream)
          Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5224Writer(OutputStream, int)
          Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5224Writer(OutputStream, String)
          Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5256Writer(OutputStream)
          Replaced by SCS5256Writer(OutputStream, int, AS400). Any SCS5256Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5256Writer(OutputStream, int)
          Replaced by SCS5256Writer(OutputStream, int, AS400). Any SCS5256Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5256Writer(OutputStream, String)
          Replaced by SCS5256Writer(OutputStream, int, AS400). Any SCS5256Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5553Writer(OutputStream)
          Replaced by SCS5553Writer(OutputStream, int, AS400). Any SCS5553Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5553Writer(OutputStream, int)
          Replaced by SCS5553Writer(OutputStream, int, AS400). Any SCS5553Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments. 
com.ibm.as400.access.SCS5553Writer(OutputStream, String)
          Replaced by SCS5553Writer(OutputStream, int, AS400). Any SCS5553Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.