/** * */ package com.sample; /** * @author hanumeshm * */ public class TransactionVO { private String fileMask; private String from_Q; private String to_Q; private String transType; /** * */ public TransactionVO() { super(); // TODO Auto-generated constructor stub } /** * @param fileMask * @param from_Q * @param to_Q * @param transType */ public TransactionVO(String fileMask, String from_Q, String to_Q, String transType) { super(); this.fileMask = fileMask; this.from_Q = from_Q; this.to_Q = to_Q; this.transType = transType; } /** * @return the fileMask */ public String getFileMask() { return fileMask; } /** * @param fileMask the fileMask to set */ public void setFileMask(String fileMask) { this.fileMask = fileMask; } /** * @return the from_Q */ public String getFrom_Q() { return from_Q; } /** * @param from_Q the from_Q to set */ public void setFrom_Q(String from_Q) { this.from_Q = from_Q; } /** * @return the to_Q */ public String getTo_Q() { return to_Q; } /** * @param to_Q the to_Q to set */ public void setTo_Q(String to_Q) { this.to_Q = to_Q; } /** * @return the transType */ public String getTransType() { return transType; } /** * @param transType the transType to set */ public void setTransType(String transType) { this.transType = transType; } }