1 10 11 package org.test; 12 13 17 public class TestBean { 18 19 20 public TestBean() { 21 } 22 23 26 private String name; 27 28 32 public String getName() { 33 34 return this.name; 35 } 36 37 41 public void setName(String name) { 42 43 this.name = name; 44 } 45 46 49 private Integer id; 50 51 55 public Integer getId() { 56 57 return this.id; 58 } 59 60 64 public void setId(Integer id) { 65 66 this.id = id; 67 } 68 69 } 70 | Popular Tags |