Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / domain / com / eneraptor / hci / LoggedData.groovy @ 3

History | View | Annotate | Download (247 Bytes)

1
package com.eneraptor.hci
2

    
3
class LoggedData {
4

    
5
        Date dateRecieved
6
        String deviceId
7
        String reportedData
8
        
9
    static constraints = {
10
                dateRecieved(blank: false)
11
                deviceId(blank: false)
12
                reportedData(blank: false, maxSize: 256)
13
    }
14
}