1 16 17 package org.apache.cocoon.ojb.samples.bean; 18 19 import java.io.Serializable ; 20 21 27 public class Employee implements Serializable { 28 29 private int id; 30 protected int departmentId; 31 protected String name; 32 33 public Employee(){ 34 this.id = 1; 35 this.departmentId = 1; 36 this.name = "My Name"; 37 } 38 39 public int getId() { 40 return this.id; 41 } 42 43 public int getDepartmentId() { 44 return this.departmentId; 45 } 46 47 public String getName() { 48 return this.name; 49 } 50 51 public void setId(int newId) { 52 this.id = newId; 53 } 54 55 public void setDepartmentId(int newDepartmentId) { 56 this.departmentId = newDepartmentId; 57 } 58 59 public void setName(String newName) { 60 this.name = newName; 61 } 62 } 63 | Popular Tags |