Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.atlassian.myorg;
- import com.atlassian.confluence.core.ConfluenceActionSupport;
- import com.atlassian.confluence.pages.AbstractPage;
- import com.atlassian.confluence.pages.actions.PageAware;
- import com.opensymphony.xwork.Action;
- /**
- * The simplest action possible
- */
- public class ExampleAction extends ConfluenceActionSupport
- {
- @Override
- public String execute() throws Exception
- {
- return Action.SUCCESS;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement