Subversion Repositories DevTools

Rev

Rev 4285 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.erggroup.buildtool.ripple;
import org.apache.log4j.Logger;

/**Representation of a row in the RUN_LEVEL table
 */
public class RunLevelData
{
  int mRcon_id;
  int mCurrent_run_level;
   
  /**Logger
   * @attribute
   */
  private static final Logger mLogger = Logger.getLogger(RunLevelData.class);

        /**constructor
   */
  RunLevelData(int rcon_id, int current_run_level)
  {
    mLogger.debug("RunLevel");
    mRcon_id = rcon_id;
    mCurrent_run_level = current_run_level;
  }

  /**accessor method
   */
  public int get_rcon_id()
  {
    mLogger.debug("get_rcon_id");
    mLogger.info("get_rcon_id returned " + mRcon_id);
    return mRcon_id;
  }

  /**accessor method
   */
  public int get_current_run_level()
  {
    mLogger.debug("get_current_run_level");
    mLogger.info("get_current_run_level returned " + mCurrent_run_level);
    return mCurrent_run_level;
  }

}