1 21 package com.jaspersoft.jasperserver.war.common; 22 23 24 28 public class UserLocale { 29 30 private String code; 31 private String description; 32 33 public UserLocale(String code, String name) { 34 this.code = code; 35 this.description = name; 36 } 37 38 public String getCode() { 39 return code; 40 } 41 42 public void setCode(String code) { 43 this.code = code; 44 } 45 46 public String getDescription() { 47 return description; 48 } 49 50 public void setDescription(String name) { 51 this.description = name; 52 } 53 54 55 } 56 | Popular Tags |