Uses of Class
org.apache.wicket.authorization.Action

Packages that use Action
org.apache.wicket The core Wicket package. 
org.apache.wicket.authorization Contains classes that allow the user to specify authorization constraints via IAuthorizationStrategy. 
org.apache.wicket.authorization.strategies   
org.apache.wicket.authorization.strategies.action   
org.apache.wicket.authorization.strategies.page   
org.apache.wicket.authorization.strategies.role.annotations   
org.apache.wicket.authorization.strategies.role.metadata   
 

Uses of Action in org.apache.wicket
 

Fields in org.apache.wicket declared as Action
static Action Component.ENABLE
          Action used with IAuthorizationStrategy to determine whether a component is allowed to be enabled.
static Action Component.RENDER
          Action used with IAuthorizationStrategy to determine whether a component and its children are allowed to be rendered.
 

Methods in org.apache.wicket with parameters of type Action
 boolean Component.isActionAuthorized(Action action)
          Authorizes an action for a component.
 

Uses of Action in org.apache.wicket.authorization
 

Methods in org.apache.wicket.authorization that return Action
 Action UnauthorizedActionException.getAction()
           
 

Methods in org.apache.wicket.authorization with parameters of type Action
 boolean IAuthorizationStrategy.isActionAuthorized(Component component, Action action)
          Gets whether the given action is permitted.
 

Constructors in org.apache.wicket.authorization with parameters of type Action
UnauthorizedActionException(Component component, Action action)
          Construct.
 

Uses of Action in org.apache.wicket.authorization.strategies
 

Methods in org.apache.wicket.authorization.strategies with parameters of type Action
 boolean CompoundAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Action in org.apache.wicket.authorization.strategies.action
 

Methods in org.apache.wicket.authorization.strategies.action that return Action
 Action IActionAuthorizer.getAction()
          Gets the action that this authorizer authorizes.
 

Methods in org.apache.wicket.authorization.strategies.action with parameters of type Action
 boolean ActionAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Action in org.apache.wicket.authorization.strategies.page
 

Methods in org.apache.wicket.authorization.strategies.page with parameters of type Action
 boolean AbstractPageAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Action in org.apache.wicket.authorization.strategies.role.annotations
 

Methods in org.apache.wicket.authorization.strategies.role.annotations with parameters of type Action
protected  boolean AnnotationsRoleAuthorizationStrategy.isActionAuthorized(Class<?> componentClass, Action action)
           
 boolean AnnotationsRoleAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Action in org.apache.wicket.authorization.strategies.role.metadata
 

Methods in org.apache.wicket.authorization.strategies.role.metadata with parameters of type Action
static void MetaDataRoleAuthorizationStrategy.authorize(Component component, Action action, String roles)
          Authorizes the given role to perform the given action on the given component.
static void MetaDataRoleAuthorizationStrategy.authorizeAll(Component component, Action action)
          Grants permission to all roles to perform the given action on the given component.
 boolean MetaDataRoleAuthorizationStrategy.isActionAuthorized(Component component, Action action)
          Uses component level meta data to match roles for component action execution.
static void MetaDataRoleAuthorizationStrategy.unauthorize(Component component, Action action, String roles)
          Removes permission for the given role to perform the given action on the given component.
static void MetaDataRoleAuthorizationStrategy.unauthorizeAll(Component component, Action action)
          Grants authorization to perform the given action to just the role NO_ROLE, effectively denying all other roles.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.