Skip to content

Instantly share code, notes, and snippets.

@danveloper
Last active December 17, 2015 21:09
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/5672473 to your computer and use it in GitHub Desktop.
Save danveloper/5672473 to your computer and use it in GitHub Desktop.
Obscurity - "Redefining the Service Layer with Groovy Categories"
class LocalPaymentService implements PaymentService {
// Dependency injected from container
CreditCardPaymentGateway creditCardPaymentGateway
GiftCardPaymentGateway giftCardPaymentGateway
CheckPaymentGateway checkPaymentGateway
EmployeePaymentGateway employeePaymentGateway
public String process(PaymentType paymentType) throws IllegalArgumentException {
if (paymentType instanceof CreditCardPaymentType) {
return doProcess(paymentType)
} else if (paymentType instanceof GiftCardPaymentType) {
return doProcess(paymentType)
} else if (paymentType instanceof CheckPaymentType) {
return doProcess(paymentType)
} else if (paymentType instanceof EmployeePaymentType) {
return doProcess(paymentType)
}
throw new IllegalArgumentException("Supplied payment type is not supported.");
}
private String doProcess(CreditCardPaymentType paymentType) {
if ("CA".equalsIgnoreCase(paymentType.getPayee().getBillingAddress().getState())) {
return doProcessCalifornia(paymentType)
}
return doProcessOther(paymentType)
}
private String doProcessCalifornia(CreditCardPaymentType paymentType) {
// ...
}
private String doProcessOther(CreditCardPaymentType paymentType) {
// …
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment