1 /*
2 * CompanyListener.java
3 * Created on 12 Сентябрь 2006 г., 23:28
4 */
5
6 package org.weda.domain;
7
8 import javax.persistence.PrePersist;
9
10 /**
11 *
12 * @author Mikhail Titov
13 */
14 public class CompanyListener {
15 @PrePersist()
16 public void beforePersist(Company company){
17 company.setFoundationDate(new java.sql.Date(System.currentTimeMillis()));
18 }
19 }