001    package railo.runtime.tag;
002    
003    public final class ProcResultBean {
004            private String name;
005            private int resultset=1;
006            private int maxrows=-1;
007            
008            /**
009             * @return Returns the maxrows.
010             */
011            public int getMaxrows() {
012                    return maxrows;
013            }
014            /**
015             * @param maxrows The maxrows to set.
016             */
017            public void setMaxrows(int maxrows) {
018                    this.maxrows = maxrows;
019            }
020            /**
021             * @return Returns the name.
022             */
023            public String getName() {
024                    return name;
025            }
026            /**
027             * @param name The name to set.
028             */
029            public void setName(String name) {
030                    this.name = name;
031            }
032            /**
033             * @return Returns the resultset.
034             */
035            public int getResultset() {
036                    return resultset;
037            }
038            /**
039             * @param resultset The resultset to set.
040             */
041            public void setResultset(int resultset) {
042                    this.resultset = resultset;
043            }
044            
045    }