1 21 package com.jaspersoft.jasperserver.war.dto; 22 23 import java.io.Serializable ; 24 25 29 public class StringOption implements Serializable { 30 31 private static final long serialVersionUID = 1L; 32 33 private final String code; 34 private final String description; 35 36 public StringOption(String code, String description) { 37 this.code = code; 38 this.description = description; 39 } 40 41 public String getCode() { 42 return code; 43 } 44 45 public String getDescription() { 46 return description; 47 } 48 49 } 50 | Popular Tags |