001    package coldfusion.xml.rpc;
002    
003    import java.io.Serializable;
004    
005    /**
006     * Extends the Query with a Bean initalizer for WebService deserializer
007     */
008    public final class QueryBean implements Serializable {
009    
010        private String columnList[];
011        private Object data[][];
012    
013        
014        public QueryBean() {}
015        
016    
017            /**
018         * @return Returns the columnList.
019         */
020        public String[] getColumnList() {
021            return columnList;
022        }
023    
024        /**
025         * @param columnList The columnList to set.
026         */
027        public void setColumnList(String[] columnList) {
028            this.columnList = columnList;
029        }
030    
031        /**
032         * @return Returns the data.
033         */
034        public Object[][] getData() {
035            return data;
036        }
037    
038        /**
039         * @param data The data to set.
040         */
041        public void setData(Object[][] data) {
042            this.data = data;
043        }
044    }