Home >> All >> org >> hibernate >> test >> [ connections Javadoc ] |
Source code: org/hibernate/test/connections/Other.java
1 package org.hibernate.test.connections; 2 3 /** 4 * @author Steve Ebersole 5 */ 6 public class Other { 7 private Long id; 8 private String name; 9 10 public Other() { 11 } 12 13 public Other(String name) { 14 this.name = name; 15 } 16 17 public Long getId() { 18 return id; 19 } 20 21 public void setId(Long id) { 22 this.id = id; 23 } 24 25 public String getName() { 26 return name; 27 } 28 29 public void setName(String name) { 30 this.name = name; 31 } 32 }