JdbcPet.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic.jdbc;
  2. import org.springframework.samples.petclinic.Pet;
  3. /**
  4.  * Subclass of Pet that carries temporary id properties which
  5.  * are only relevant for a JDBC implmentation of the Clinic.
  6.  *
  7.  * @author Juergen Hoeller
  8.  * @see SimpleJdbcClinic
  9.  */
  10. class JdbcPet extends Pet {
  11. private int typeId;
  12. private int ownerId;
  13. public void setTypeId(int typeId) {
  14. this.typeId = typeId;
  15. }
  16. public int getTypeId() {
  17. return this.typeId;
  18. }
  19. public void setOwnerId(int ownerId) {
  20. this.ownerId = ownerId;
  21. }
  22. public int getOwnerId() {
  23. return this.ownerId;
  24. }
  25. }