Class BaseJobEntryTorqueRecordMapper

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected int getDayOfMonth​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field dayOfMonth in JobEntryTorque.
      protected String getEmail​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field email in JobEntryTorque.
      protected int getHour​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field hour in JobEntryTorque.
      protected int getJobId​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field jobId in JobEntryTorque.
      protected int getMinute​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field minute in JobEntryTorque.
      protected byte[] getProperty​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field property in JobEntryTorque.
      protected int getSecond​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field second in JobEntryTorque.
      protected String getTask​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field task in JobEntryTorque.
      protected int getWeekDay​(ResultSet resultSet, int columnIndex)
      Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field weekDay in JobEntryTorque.
      JobEntryTorque processRow​(ResultSet resultSet, int offset, org.apache.torque.criteria.Criteria criteria)
      Constructs the object from the current row in the resultSet.
    • Method Detail

      • processRow

        public JobEntryTorque processRow​(ResultSet resultSet,
                                         int offset,
                                         org.apache.torque.criteria.Criteria criteria)
                                  throws org.apache.torque.TorqueException
        Constructs the object from the current row in the resultSet.
        Specified by:
        processRow in interface org.apache.torque.om.mapper.RecordMapper<JobEntryTorque>
        Parameters:
        resultSet - the resultSet to operate on, already pointing to the correct row. Not null.
        offset - a possible offset in the columns to be considered (if previous columns contain other objects), or 0 for no offset.
        criteria - The criteria which created the result set. If set, the attributes to set in the data object are determined from the select columns in the criteria; if no matching column can be found, null is returned. If not set, all of the table's columns are read from the result set in the order defined in the table definition.
        Returns:
        the mapped object, not null.
        Throws:
        org.apache.torque.TorqueException - when reading fields from the RecordSet fails or if a Criteria is passed which contains select columns other than the columns in the TURBINE_SCHEDULED_JOB table.
      • getJobId

        protected int getJobId​(ResultSet resultSet,
                               int columnIndex)
                        throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field jobId in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getSecond

        protected int getSecond​(ResultSet resultSet,
                                int columnIndex)
                         throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field second in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getMinute

        protected int getMinute​(ResultSet resultSet,
                                int columnIndex)
                         throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field minute in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getHour

        protected int getHour​(ResultSet resultSet,
                              int columnIndex)
                       throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field hour in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getWeekDay

        protected int getWeekDay​(ResultSet resultSet,
                                 int columnIndex)
                          throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field weekDay in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getDayOfMonth

        protected int getDayOfMonth​(ResultSet resultSet,
                                    int columnIndex)
                             throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field dayOfMonth in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getTask

        protected String getTask​(ResultSet resultSet,
                                 int columnIndex)
                          throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field task in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getEmail

        protected String getEmail​(ResultSet resultSet,
                                  int columnIndex)
                           throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field email in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException
      • getProperty

        protected byte[] getProperty​(ResultSet resultSet,
                                     int columnIndex)
                              throws org.apache.torque.TorqueException
        Reads the value of the columnIndex'th column in the resultSet so that it can be used to set the field property in JobEntryTorque.
        Parameters:
        resultSet - the ResultSet to read from, not null.
        columnIndex - the index in the resultSet which should be read.
        Returns:
        the content of the column.
        Throws:
        SQLException - if a problem occurs when reading from the resultSet.
        org.apache.torque.TorqueException