/** * Created on Jan 28 , 2008 * @author Hanumesh Mekala * * Copyright (c) EA Technologies 2008. All rights reserved. * Unauthorized reproduction and/or distribution is strictly prohibited. * description : POJO to set values for Drools rule engine. */ package com.sample; public class MessageEA { private String transType; private String fileName; private String fromQ; private String toQ; /** * @return the fileName */ public String getFileName() { return fileName; } /** * @param fileName the fileName to set */ public void setFileName(String fileName) { this.fileName = fileName; } /** * @return the targetQ */ public String getFromQ() { return fromQ; } /** * @param targetQ the targetQ to set */ public void setFromQ(String fromQ) { this.fromQ = fromQ; } public String getToQ() { return toQ; } public void setToQ(String toQ) { this.toQ = toQ; } public String getTransType() { return transType; } public void setTransType(String transType) { this.transType = transType; } }