ricardojmendez / grails-imagetools

Basic image tools plugin for Grails based on JAI

Thu Aug 20 20:30:07 -0700 2009
commit  f0484422d22fc5ca209d33f5ce8642f6a41c4d3a
tree    0c202c72d743ac81bd4682c91b9ab4a5161877bc
parent  ae8b7255b72bce996c716c9ebba260cf5112a247
grails-imagetools / ImageToolsGrailsPlugin.groovy
100644 31 lines (28 sloc) 1.195 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class ImageToolsGrailsPlugin {
def version = "1.0.4";
def dependsOn = [:]
 
def author = "Ricardo J. Mendez"
def authorEmail = "ricardo@arquetipos.co.cr"
def title = "Basic image tools based on JAI"
def documentation = 'http://grails.org/ImageTools+plugin'
 
def doWithSpring = {
// TODO Implement runtime spring config (optional)
}
def doWithApplicationContext = { applicationContext ->
// TODO Implement post initialization spring config (optional)
}
def doWithWebDescriptor = { xml ->
// TODO Implement additions to web.xml (optional)
}
def doWithDynamicMethods = { ctx ->
// TODO Implement additions to web.xml (optional)
}
def onChange = { event ->
// TODO Implement code that is executed when this class plugin class is changed
// the event contains: event.application and event.applicationContext objects
}
def onApplicationChange = { event ->
// TODO Implement code that is executed when any class in a GrailsApplication changes
// the event contain: event.source, event.application and event.applicationContext objects
}
}