1 21 package com.jaspersoft.jasperserver.util; 22 23 import java.io.Serializable ; 24 25 29 30 public class ParameterBean { 31 32 private String key; 33 private String value; 34 35 public String getKey() { 36 return key; 37 } 38 39 public void setKey(String key) { 40 this.key = key; 41 } 42 43 public String getValue() { 44 return value; 45 } 46 47 public void setValue(String value) { 48 this.value = value; 49 } 50 } 51 | Popular Tags |