JdbcPet.java
资源名称:petclinic.rar [点击查看]
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package org.springframework.samples.petclinic.jdbc;
- import org.springframework.samples.petclinic.Pet;
- /**
- * Subclass of Pet that carries temporary id properties which
- * are only relevant for a JDBC implmentation of the Clinic.
- *
- * @author Juergen Hoeller
- * @see SimpleJdbcClinic
- */
- class JdbcPet extends Pet {
- private int typeId;
- private int ownerId;
- public void setTypeId(int typeId) {
- this.typeId = typeId;
- }
- public int getTypeId() {
- return this.typeId;
- }
- public void setOwnerId(int ownerId) {
- this.ownerId = ownerId;
- }
- public int getOwnerId() {
- return this.ownerId;
- }
- }