Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

/Stardust/KnowledgeBase/Customization/Portal/Role Based Stardust UI Customization Using Spring Bean Post-processor

Revision as of 07:09, 12 December 2011 by Ganesh.lawande.sungard.com (Talk | contribs) (New page: == Introduction == In this article, we will see how you can customize access permission to the Stardust Portal UI components using spring bean post processor approach. In the portal, per...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

In this article, we will see how you can customize access permission to the Stardust Portal UI components using spring bean post processor approach. In the portal, perspectives, launch panels, and views are implemented and controlled by spring backing beans. The spring backing beans take care of UI component visibility (like launch panel links) and role based access permissions. If you need to change the default UI access policy, you can use spring bean post processor and change access *permissions by changing UI component backing beans as per your need. For example, you can change the things like:

  • Make the ‘my documents’ launch panel not to be accessible to X role;

Restrict the process details view to be visible for Role Y and so on Now let us see all this in action with illustrative example;

Back to the top