1 Reply Latest reply on Oct 19, 2010 8:58 AM by jssteux

    Role and portal page Association in JBOSS Portal ?

    anithsubha

      Hi All,

       

      Please let me know table info on portal page and Role association ?

       

      In Jboss portal server, we have option to set user privilege based on Role across pages using the security Menu,

      can you please share the info of table schema where the association details get stored and also please share the Jboss service (API) info to perform the same ?

       

      Looking for your help.

       

      Thanks,

      Subha

        • 1. Re: Role and portal page Association in JBOSS Portal ?
          jssteux

          Hi,

           

          There is not a specific API. So we had to use the internal API of JBoss Portal to do so.

           

          Here is an extract

           

          Jean-Sébastien

           

           

           

                  // Get the page

                   PortalObject page = getControllerContext().getController().getPortalObjectContainer().getObject(poid);

           

           

                  // Get the DomainConfigurator

                    DomainConfigurator dc = getControllerContext().getController().getPortalObjectContainer()
                          .getAuthorizationDomain().getConfigurator();

           

           

                  // Construct the permission

                  Set<RoleSecurityBinding> newConstraints = new HashSet<RoleSecurityBinding>();

             
                  Set<String> secureAction = new HashSet<String>();
                  secureAction.add(PortalObjectPermission.VIEW_ACTION);

           

                  newConstraints.add(new RoleSecurityBinding(secureAction, "myRole"));

           

           

                  // Set the permission

                  dc.setSecurityBindings(page.getId().toString(PortalObjectPath.CANONICAL_FORMAT), newConstraints);