com.ibm.commerce.foundation.server.services.dataaccess.db.jdbc

Class ResultSetData

  • java.lang.Object
    • com.ibm.commerce.foundation.server.services.dataaccess.db.jdbc.ResultSetData


  • public class ResultSetData
    extends java.lang.Object
    This class represents a pair of result set data. Each result set data contains a table name and a column name.
    • Constructor Summary

      Constructors 
      Constructor and Description
      ResultSetData()
      default constructor
      ResultSetData(java.lang.String tableName, java.lang.String columnName, java.lang.String tableAliasName)
      constructor
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getColumnName()
      get the column name
      java.lang.String getTableAliasName()
      get the alias name of the table
      java.lang.String getTableName()
      get the name of the table
      void setColumnName(java.lang.String name)
      set the column name
      void setTableAliasName(java.lang.String name)
      set the alias name of the table
      void setTableName(java.lang.String name)
      set the name of the table
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ResultSetData

        public ResultSetData()
        default constructor
      • ResultSetData

        public ResultSetData(java.lang.String tableName,
                             java.lang.String columnName,
                             java.lang.String tableAliasName)
        constructor
        Parameters:
        tableName - the name of a table
        columnName - the name of a column
        tableAliasName - the alias name of a table
    • Method Detail

      • getColumnName

        public java.lang.String getColumnName()
        get the column name
        Returns:
        Returns the name of the column.
      • setColumnName

        public void setColumnName(java.lang.String name)
        set the column name
        Parameters:
        name - the name of the column to set.
      • getTableName

        public java.lang.String getTableName()
        get the name of the table
        Returns:
        Returns the name of the table.
      • setTableName

        public void setTableName(java.lang.String name)
        set the name of the table
        Parameters:
        name - The name of the table to set.
      • getTableAliasName

        public java.lang.String getTableAliasName()
        get the alias name of the table
        Returns:
        Returns the alias name of the table.
      • setTableAliasName

        public void setTableAliasName(java.lang.String name)
        set the alias name of the table
        Parameters:
        name - The alias name of the table to set.