Newer Version Available
Controller Class Security
Like other Apex classes, you can specify whether a user can execute methods in a custom controller or controller extension class based on the user's profile.
Permission for an Apex class is checked only at the top level. For example, if class A calls class B, and a user profile has access only to class A but not class B, the user can still execute the code in class A. Likewise, if a Visualforce page uses a custom component with an associated controller, security is only checked for the controller associated with the page. The controller associated with the custom component executes regardless of permissions.
To set Apex class security from the class list page:
- From Setup, enter Apex Classes in the Quick Find box, then select Apex Classes.
- Next to the name of the class that you want to restrict, click Security.
- Select the profiles that you want to enable from the Available Profiles list and click Add, or select the profiles that you want to disable from the Enabled Profiles list and click Remove.
- Click Save.
To set Apex class security from the class detail page:
- From Setup, enter Apex Classes in the Quick Find box, then select Apex Classes.
- Click the name of the class that you want to restrict.
- Click Security.
- Select the profiles that you want to enable from the Available Profiles list and click Add, or select the profiles that you want to disable from the Enabled Profiles list and click Remove.
- Click Save.