Advertisement
DrupalCustom

ExampleAction

Jul 5th, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package com.atlassian.myorg;
  2.  
  3. import com.atlassian.confluence.core.ConfluenceActionSupport;
  4. import com.atlassian.confluence.pages.AbstractPage;
  5. import com.atlassian.confluence.pages.actions.PageAware;
  6. import com.opensymphony.xwork.Action;
  7.  
  8. /**
  9. * The simplest action possible
  10. */
  11. public class ExampleAction extends ConfluenceActionSupport
  12. {
  13. @Override
  14. public String execute() throws Exception
  15. {
  16. return Action.SUCCESS;
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement