Skip to content

Instantly share code, notes, and snippets.

@danveloper
Created May 29, 2013 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danveloper/5672680 to your computer and use it in GitHub Desktop.
Save danveloper/5672680 to your computer and use it in GitHub Desktop.
Registrar - "Redefining the Service Layer with Groovy Categories"
class PaymentTypeHandlerRegistrationCategory {
static final registry = [:]
// type => handler registration
static def register(Class type, Class handler) {
registry[type] = handler
}
static def getHandler(Class type) {
registry[type]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment