Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.erggroup.buildtool.ripple;/*** Class to conatin information on Daemon Instructions as we iterarte over them**/public class DaemonInstruction {// fixed for the duration of the scanfinal int rtag_id;final int opCode;final boolean expired;// Modified for every found instructionint 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;}}//public static final DaemonInstruction NULL_INSTRUCTION = new DaemonInstruction(-1,-1,true);