source:
trunk/grails-app/domain/AssetExtendedAttribute.groovy
@
635
| Last change on this file since 635 was 268, checked in by , 16 years ago | |
|---|---|
| File size: 371 bytes | |
| Rev | Line | |
|---|---|---|
| [121] | 1 | class AssetExtendedAttribute { |
| 2 | ||
| [268] | 3 | ExtendedAttributeType extendedAttributeType |
| [124] | 4 | Asset asset |
| [121] | 5 | |
| 6 | String value | |
| 7 | boolean isActive = true | |
| 8 | ||
| 9 | // static hasMany = [] | |
| 10 | ||
| [124] | 11 | static belongsTo = [Asset] |
| [121] | 12 | |
| [268] | 13 | static constraints = { |
| 14 | value(maxSize:100) | |
| 15 | isActive() | |
| 16 | } | |
| [121] | 17 | |
| 18 | String toString() { | |
| [268] | 19 | "${extendedAttributeType.name}: ${this.value}" |
| [121] | 20 | } |
| 21 | } | |
| 22 |
Note: See TracBrowser
for help on using the repository browser.
