1 package com.calipso.reportgenerator.common; 2 3 import java.io.Serializable ; 4 5 9 public class DefinitionInfo implements Serializable { 10 private String id; 11 private String description; 12 13 public String getId() { 14 return id; 15 } 16 17 public void setId(String id) { 18 this.id = id; 19 } 20 21 public String getDescription() { 22 return description; 23 } 24 25 public void setDescription(String description) { 26 this.description = description; 27 } 28 29 public String toString(){ 30 return getDescription(); 31 } 32 33 public DefinitionInfo(String id, String description) { 34 this.id = id; 35 this.description = description; 36 } 37 38 public DefinitionInfo() { 39 } 40 } 41 | Popular Tags |