Skip to content

Instantly share code, notes, and snippets.

@danveloper
Created May 29, 2013 18:24
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/5672527 to your computer and use it in GitHub Desktop.
Save danveloper/5672527 to your computer and use it in GitHub Desktop.
Redefining Further - "Redefining the Service Layer with Groovy Categories"
class LocalPaymentService implements PaymentService {
public String process(PaymentType paymentType) {
if (paymentType instanceof CreditCardPaymentType) {
use (CreditCardPaymentProcessor) {
return paymentType.process()
}
}
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment