source: trunk/grails-app/domain/Period.groovy @ 199

Last change on this file since 199 was 199, checked in by gav, 14 years ago

Upgrade quartz plugin to 0.4.1 propper.
Refactor and enable quartz scheduling for recurring tasks.
Adjust svn ignores to ignore all log files.
Create a pseudo system person for automated insertions.

File size: 195 bytes
Line 
1class Period {
2
3    String period
4    boolean isActive = true
5
6//     static belongsTo = []
7
8//     static constraints = {
9//
10//     }
11
12    String toString() {
13        "${this.period}"
14    }
15}
16
Note: See TracBrowser for help on using the repository browser.