Nuxeo ECM Projects 5.4.3-SNAPSHOT

Uses of Class
org.nuxeo.ecm.platform.actions.Action

Packages that use Action
org.nuxeo.ecm.admin   
org.nuxeo.ecm.platform.actions   
org.nuxeo.ecm.platform.actions.ejb   
org.nuxeo.ecm.platform.comment.web   
org.nuxeo.ecm.platform.syndication   
org.nuxeo.ecm.platform.ui.web.api   
org.nuxeo.ecm.webapp.action   
org.nuxeo.ecm.webapp.clipboard   
org.nuxeo.ecm.webapp.edit.lock   
 

Uses of Action in org.nuxeo.ecm.admin
 

Methods in org.nuxeo.ecm.admin that return Action
 Action AdminViewManager.getCurrentSubView()
           
 Action AdminViewManager.getCurrentView()
           
 

Methods in org.nuxeo.ecm.admin that return types with arguments of type Action
 List<Action> AdminViewManager.getAvailableActions()
           
 List<Action> AdminViewManager.getAvailableSubActions()
           
 

Methods in org.nuxeo.ecm.admin with parameters of type Action
 void AdminViewManager.setCurrentSubView(Action currentSubView)
           
 void AdminViewManager.setCurrentView(Action currentView)
           
 

Uses of Action in org.nuxeo.ecm.platform.actions
 

Methods in org.nuxeo.ecm.platform.actions that return Action
 Action Action.clone()
           
 Action ActionContributionHandler.clone(Action object)
           
 Action ActionService.getAction(String actionId)
           
 Action ActionRegistry.getAction(String id)
           
 Action ActionRegistry.removeAction(String id)
           
 

Methods in org.nuxeo.ecm.platform.actions that return types with arguments of type Action
 Collection<Action> ActionRegistry.getActions()
           
 List<Action> ActionRegistry.getActions(String category)
           
 List<Action> ActionService.getActions(String category, ActionContext context)
           
 List<Action> ActionService.getActions(String category, ActionContext context, boolean hideUnavailableActions)
           
 List<Action> ActionService.getAllActions(String category)
           
 

Methods in org.nuxeo.ecm.platform.actions with parameters of type Action
 boolean DefaultActionFilter.accept(Action action, ActionContext context)
          Checks whether this action is valid in the given context.
 boolean ActionFilter.accept(Action action, ActionContext context)
           
 void ActionRegistry.addAction(Action action)
           
 Action ActionContributionHandler.clone(Action object)
           
 int Action.compareTo(Action anotherAction)
           
 void ActionContributionHandler.contributionRemoved(String id, Action origContrib)
           
 void ActionContributionHandler.contributionUpdated(String actionId, Action action, Action origAction)
           
 String ActionContributionHandler.getContributionId(Action contrib)
           
 boolean ActionService.isEnabled(Action action, ActionContext context)
           
 void ActionContributionHandler.merge(Action source, Action dest)
           
 

Uses of Action in org.nuxeo.ecm.platform.actions.ejb
 

Methods in org.nuxeo.ecm.platform.actions.ejb that return Action
 Action ActionManager.getAction(String actionId)
           
 

Methods in org.nuxeo.ecm.platform.actions.ejb that return types with arguments of type Action
 List<Action> ActionManager.getActions(String category, ActionContext context)
          Gets actions for a category (filters are evaluated).
 List<Action> ActionManager.getActions(String category, ActionContext context, boolean hideUnavailableActions)
          Gets actions for a category (filters are evaluated).
 List<Action> ActionManager.getAllActions(String category)
          Gets all actions in a category (filters are NOT evaluated).
 

Uses of Action in org.nuxeo.ecm.platform.comment.web
 

Methods in org.nuxeo.ecm.platform.comment.web that return types with arguments of type Action
 List<Action> CommentManagerActions.getActionsForComment()
           
 List<Action> AbstractCommentManagerActionsBean.getActionsForComment()
           
 List<Action> CommentManagerActions.getActionsForComment(String category)
           
 List<Action> AbstractCommentManagerActionsBean.getActionsForComment(String category)
           
 

Uses of Action in org.nuxeo.ecm.platform.syndication
 

Methods in org.nuxeo.ecm.platform.syndication that return types with arguments of type Action
 List<Action> SyndicationActionsBean.getActionsForSyndication()
          Deprecated. Unused
 List<Action> SyndicationActions.getActionsForSyndication()
          Deprecated. Unused
 

Uses of Action in org.nuxeo.ecm.platform.ui.web.api
 

Methods in org.nuxeo.ecm.platform.ui.web.api that return Action
 Action WebActions.getCurrentSubTabAction()
          Returns the current sub tab for a category computed from the current tab action id and the suffix WebActions.SUBTAB_CATEGORY_SUFFIX.
 Action WebActions.getCurrentSubTabAction(String parentActionId)
          Returns the current sub tab action for given parent action, computing the category from parent action id with suffix WebActions.SUBTAB_CATEGORY_SUFFIX.
 Action WebActions.getCurrentTabAction()
          Returns the current action for category WebActions.DEFAULT_TABS_CATEGORY
 Action WebActions.getCurrentTabAction(String category)
          Returns the current action for given category.
 Action TabActionsSelection.getCurrentTabAction(String category)
          Returns the current action for given category.
 

Methods in org.nuxeo.ecm.platform.ui.web.api that return types with arguments of type Action
 List<Action> WebActions.getActionsList(String category)
          Returns all filtered actions for a given category, creating a new context for the filters resolution.
 List<Action> WebActions.getActionsList(String category, ActionContext context)
          Returns all filtered actions for a given category and given resolution context.
 List<Action> WebActions.getAllActions(String category)
          Returns all actions for a given category, without filtering.
 List<Action> WebActions.getSubTabsList()
          Returns filtered actions for a category computed from the current tab action id and the suffix WebActions.SUBTAB_CATEGORY_SUFFIX.
 List<Action> WebActions.getSubViewActionsList()
          Deprecated. 
 List<Action> WebActions.getTabsList()
          Returns filtered actions for the category WebActions.DEFAULT_TABS_CATEGORY
 List<Action> WebActions.getUnfiltredActionsList(String category)
          Returns all actions for a given category, creating a new context for the filters resolution.
 List<Action> WebActions.getUnfiltredActionsList(String category, ActionContext context)
          Returns all actions for a given category and given resolution context.
 

Methods in org.nuxeo.ecm.platform.ui.web.api with parameters of type Action
 void WebActions.setCurrentSubTabAction(Action tabAction)
          Sets the current sub tab for a category computed from the current tab action id and the suffix WebActions.SUBTAB_CATEGORY_SUFFIX.
 void WebActions.setCurrentTabAction(Action tabAction)
          Sets the current action for category WebActions.DEFAULT_TABS_CATEGORY
 void WebActions.setCurrentTabAction(String category, Action tabAction)
          Sets the current action for given category.
 void TabActionsSelection.setCurrentTabAction(String category, Action tabAction)
          Sets the current action for given category, with additional sub tabs.
 

Method parameters in org.nuxeo.ecm.platform.ui.web.api with type arguments of type Action
 void WebActions.setSubTabsList(List<Action> tabsList)
          Deprecated. since 5.4.2: useless
 void WebActions.setTabsList(List<Action> tabsList)
          Deprecated. since 5.4.2: useless
 

Uses of Action in org.nuxeo.ecm.webapp.action
 

Methods in org.nuxeo.ecm.webapp.action that return Action
 Action WebActionsBean.getCurrentSubTabAction()
           
 Action WebActionsBean.getCurrentSubTabAction(String parentActionId)
           
 Action WebActionsBean.getCurrentTabAction()
           
 Action WebActionsBean.getCurrentTabAction(String category)
           
 

Methods in org.nuxeo.ecm.webapp.action that return types with arguments of type Action
 List<Action> DeleteActionsBean.getActionsForTrashSelection()
           
 List<Action> WebActionsBean.getActionsList(String category)
           
 List<Action> WebActionsBean.getActionsList(String category, ActionContext context)
           
 List<Action> WebActionsBean.getAllActions(String category)
           
 List<Action> PopupHelper.getAvailablePopupActions(String popupDocId)
           
 List<Action> WebActionsBean.getSubTabsList()
           
 List<Action> WebActionsBean.getSubViewActionsList()
          Deprecated. 
 List<Action> WebActionsBean.getTabsList()
           
 List<Action> WebActionsBean.getUnfiltredActionsList(String category)
           
 List<Action> WebActionsBean.getUnfiltredActionsList(String category, ActionContext context)
           
 List<Action> PopupHelper.getUnfiltredPopupActions()
          Returns all popup actions: used to construct HTML menu template.
 

Methods in org.nuxeo.ecm.webapp.action with parameters of type Action
 String MainTabsActions.getViewFor(Action mainTabAction)
           
 void WebActionsBean.setCurrentSubTabAction(Action tabAction)
           
 void WebActionsBean.setCurrentTabAction(Action currentTabAction)
           
 void WebActionsBean.setCurrentTabAction(String category, Action tabAction)
           
 

Method parameters in org.nuxeo.ecm.webapp.action with type arguments of type Action
 void WebActionsBean.setSubTabsList(List<Action> tabsList)
          Deprecated. 
 void WebActionsBean.setTabsList(List<Action> tabsList)
          Deprecated. 
 

Uses of Action in org.nuxeo.ecm.webapp.clipboard
 

Methods in org.nuxeo.ecm.webapp.clipboard that return types with arguments of type Action
 List<Action> ClipboardActionsBean.getActionsForCurrentList()
           
 List<Action> ClipboardActions.getActionsForCurrentList()
          Returns the list of available web actions for the currently selected DocumentList.
 List<Action> ClipboardActionsBean.getActionsForSelection()
           
 List<Action> ClipboardActions.getActionsForSelection()
          Returns the list of available web actions for the currently selected Documents.
 

Uses of Action in org.nuxeo.ecm.webapp.edit.lock
 

Methods in org.nuxeo.ecm.webapp.edit.lock that return Action
 Action LockActions.getLockOrUnlockAction()
          Returns the action of lock or unlock for a document.
 Action LockActionsBean.getLockOrUnlockAction()
           
 


Nuxeo ECM Projects 5.4.3-SNAPSHOT

Copyright © 2011 Nuxeo SAS. All Rights Reserved.