Skip to content

Instantly share code, notes, and snippets.

@mhtmalpani
Created October 14, 2017 13:19
Show Gist options
  • Save mhtmalpani/b914f2947456de084477c487bdccfd49 to your computer and use it in GitHub Desktop.
Save mhtmalpani/b914f2947456de084477c487bdccfd49 to your computer and use it in GitHub Desktop.
public class CEO extends ChainHandler implements Employee {
@Override
public void handleRequest(ChainedRequest chainedRequest) {
switch (chainedRequest.getRequestType()) {
case CONFERENCE:
System.out.println("CEO can approve anything");
break;
case PURCHASE:
System.out.println("CEO can approve anything");
break;
default:
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment