blob: 442c6c1bc50c81df717a39d81a4f50c4ff8ea6cd [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml;
public class JavaBeanWithSqlTimestamp {
private java.sql.Timestamp timestamp;
private java.sql.Date date;
public java.sql.Timestamp getTimestamp() {
return timestamp;
}
public void setTimestamp(java.sql.Timestamp timestamp) {
this.timestamp = timestamp;
}
public java.sql.Date getDate() {
return date;
}
public void setDate(java.sql.Date date) {
this.date = date;
}
}