Subversion Repositories DevTools

Rev

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

package com.erggroup.buildtool.ripple;

/**
 * Class to contain information on Daemon Instructions as we iterate over them
 * 
 */
    public class DaemonInstruction {
        // fixed for the duration of the scan
        final int rtag_id;
        final int opCode;
        final boolean expired;
        
        // Modified for every found instruction
        int instruction = 0;
        int pvId = -1;
        int userId = -1;
        String userEmail = "";
        
        /**
         * Create a Daemon Instruction search/result item
         * @param rtagId
         * @param opCode
         * @param bExpired
         * 
         */
        public DaemonInstruction (final int rtagId, final int opCode, boolean bExpired)
        {
            this.rtag_id = rtagId;
            this.opCode = opCode;
            this.expired = bExpired;
            this.instruction = 0;
        }
    }