Input.java [src/java/m/wqm/scorebar] Revision: 43d1f85f9eb218d39f7a0b1d336b604dd66d1830  Date: Mon Jun 01 11:23:09 MDT 2015
package m.wqm.scorebar;

/**
 *
 * @author RUMPAL SIDHU
 */
public class Input {

    int AoAId;
    //From WQM-14 NutTechScores service 
    int nleach_techn_score;
    int nsurf_techn_score;
    int psurf_techn_score;
    //From WQM-15 SedNutPractScores service
    int nleach_pract_score;
    int ssurf_pract_score;
    int nsurf_pract_score;
    int psurf_pract_score;
    //From WQM-16 NutAppMgtScores service
    int nleach_app_mgt_score;
    int nsurf_app_mgt_score;
    int psurf_app_mgt_score;
    //From WQM-17 PestIPMScores service
    int pleach_ipm_score;
    int psolsurf_ipm_score;
    int padsurf_ipm_score;
    int pdrift_ipm_score;
    //From WQM-18 PestTechScores service
    int pleach_technique_score;
    int psolsurf_technique_score;
    int padsurf_technique_score;
    int pdrift_technique_score;
    //From WQM-19 PestPractScores service
    int pleach_practice_score;
    int psolsurf_practice_score;
    int padsurf_practice_score;
    int pdrift_practice_score;
    //From WQM-13 WQMThresholdScores service
    int aoa_nleach_threshold;
    int aoa_nrun_threshold;
    int aoa_sedrun_threshold;
    int aoa_prun_threshold;
    int aoa_pleach_human_threshold;
    int aoa_pleach_matcfish_threshold;
    int aoa_psorun_human_threshold;
    int aoa_psorun_matcfish_threshold;
    int aoa_padrun_human_threshold;
    int aoa_padrun_stvfish_threshold;
    int aoa_pdrift_human_threshold;
    int aoa_pdrift_fish_threshold;

    public Input(int AoAId, int nleach_techn_score, int nsurf_techn_score,
            int psurf_techn_score, int nleach_pract_score, int ssurf_pract_score,
            int nsurf_pract_score, int psurf_pract_score, int nleach_app_mgt_score,
            int nsurf_app_mgt_score, int psurf_app_mgt_score, int pleach_ipm_score,
            int psolsurf_ipm_score, int padsurf_ipm_score, int pdrift_ipm_score, int pleach_technique_score,
            int psolsurf_technique_score, int padsurf_technique_score, int pdrift_technique_score,
            int pleach_practice_score, int psolsurf_practice_score, int padsurf_practice_score, int pdrift_practice_score,
            int aoa_nleach_threshold, int aoa_nrun_threshold, int aoa_sedrun_threshold, int aoa_prun_threshold,
            int aoa_pleach_human_threshold, int aoa_pleach_matcfish_threshold,
            int aoa_psorun_human_threshold, int aoa_psorun_matcfish_threshold,
            int aoa_padrun_human_threshold, int aoa_padrun_stvfish_threshold,
            int aoa_pdrift_human_threshold, int aoa_pdrift_fish_threshold) {
        this.AoAId = AoAId;
        this.nleach_techn_score = nleach_techn_score;
        this.nsurf_techn_score = nsurf_techn_score;
        this.psurf_techn_score = psurf_techn_score;
        this.nleach_pract_score = nleach_pract_score;
        this.ssurf_pract_score = ssurf_pract_score;
        this.nsurf_pract_score = nsurf_pract_score;
        this.psurf_pract_score = psurf_pract_score;
        this.nleach_app_mgt_score = nleach_app_mgt_score;
        this.nsurf_app_mgt_score = nsurf_app_mgt_score;
        this.psurf_app_mgt_score = psurf_app_mgt_score;
        this.pleach_ipm_score = pleach_ipm_score;
        this.psolsurf_ipm_score = psolsurf_ipm_score;
        this.padsurf_ipm_score = padsurf_ipm_score;
        this.pdrift_ipm_score = pdrift_ipm_score;
        this.pleach_technique_score = pleach_technique_score;
        this.psolsurf_technique_score = psolsurf_technique_score;
        this.padsurf_technique_score = padsurf_technique_score;
        this.pdrift_technique_score = pdrift_technique_score;
        this.pleach_practice_score = pleach_practice_score;
        this.psolsurf_practice_score = psolsurf_practice_score;
        this.padsurf_practice_score = padsurf_practice_score;
        this.pdrift_practice_score = pdrift_practice_score;
        this.aoa_nleach_threshold = aoa_nleach_threshold;
        this.aoa_nrun_threshold = aoa_nrun_threshold;
        this.aoa_sedrun_threshold = aoa_sedrun_threshold;
        this.aoa_prun_threshold = aoa_prun_threshold;
        this.aoa_pleach_human_threshold = aoa_pleach_human_threshold;
        this.aoa_pleach_matcfish_threshold = aoa_pleach_matcfish_threshold;
        this.aoa_psorun_human_threshold = aoa_psorun_human_threshold;
        this.aoa_psorun_matcfish_threshold = aoa_psorun_matcfish_threshold;
        this.aoa_padrun_human_threshold = aoa_padrun_human_threshold;
        this.aoa_padrun_stvfish_threshold = aoa_padrun_stvfish_threshold;
        this.aoa_pdrift_human_threshold = aoa_pdrift_human_threshold;
        this.aoa_pdrift_fish_threshold = aoa_pdrift_fish_threshold;
    }
}