Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class FooterSaveActionDefinition extends AbstractItemActionDefinition {
  2.  
  3.  
  4. public FooterSaveActionDefinition() {
  5. this.setImplementationClass(MyAction.class);
  6. }
  7. }
  8.  
  9. class MyAction implements Action {
  10.  
  11. @Inject
  12. protected MyAction() {
  13.  
  14. }
  15.  
  16.  
  17. @Override
  18. public void execute() throws ActionExecutionException {
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement