1 25 package org.objectweb.easybeans.tests.common.ejbs.entity.entitytest00; 26 27 import javax.persistence.Embeddable; 28 29 35 @Embeddable 36 public class Telephone { 37 38 41 private String mobile; 42 43 46 private String homePhone; 47 48 51 private String workPhone; 52 53 57 public String getHomePhone() { 58 return homePhone; 59 } 60 61 65 public void setHomePhone(final String homePhone) { 66 this.homePhone = homePhone; 67 } 68 69 73 public String getMobile() { 74 return mobile; 75 } 76 77 81 public void setMobile(final String mobile) { 82 this.mobile = mobile; 83 } 84 85 86 90 public String getWorkPhone() { 91 return workPhone; 92 } 93 94 98 public void setWorkPhone(final String workPhone) { 99 this.workPhone = workPhone; 100 } 101 102 103 104 } 105 | Popular Tags |