1 21 package com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent; 22 23 24 25 32 public class RepoListOfValuesItem 33 { 34 37 private long id; 38 private String label; 39 private Object value; 40 41 44 public long getId() 45 { 46 return id; 47 } 48 49 52 public void setId(long id) 53 { 54 this.id = id; 55 } 56 57 60 public String getLabel() 61 { 62 return label; 63 } 64 65 68 public void setLabel(String label) 69 { 70 this.label = label; 71 } 72 73 76 public Object getValue() 77 { 78 return value; 79 } 80 81 84 public void setValue(Object value) 85 { 86 this.value = value; 87 } 88 89 } 90 | Popular Tags |