001 package railo.runtime.tag; 002 003 public class ReportParamBean { 004 005 private String name; 006 private Object value; 007 /** 008 * @return the name 009 */ 010 public String getName() { 011 return name; 012 } 013 /** 014 * @param name the name to set 015 */ 016 public void setName(String name) { 017 this.name = name; 018 } 019 /** 020 * @return the value 021 */ 022 public Object getValue() { 023 return value; 024 } 025 /** 026 * @param value the value to set 027 */ 028 public void setValue(Object value) { 029 this.value = value; 030 } 031 032 }