Package org.picketlink.idm.api

Examples of org.picketlink.idm.api.Group


                Iterator<?> iter = getSecurityContext().getObjects(
                        new ClassObjectFilter(Group.class)).iterator();

                boolean found = false;
                while (iter.hasNext()) {
                    Group g = (Group) iter.next();
                    if (g.equals(group)) {
                        found = true;
                        break;
                    }
                }
View Full Code Here


        Fqn nodeFqn = getFqn(ns, NODE_PLIDM_ROOT_GROUP);

        Node node = getNode(nodeFqn);

        if (node != null) {
            Group rootGroup = (Group) node.get(NODE_OBJECT_KEY);

            if (log.isTraceEnabled() && rootGroup != null) {
                log.trace(this.toString() + "GateIn root group found in cache" + ";namespace=" + ns);
            }
View Full Code Here

        Fqn nodeFqn = getFqn(ns, NODE_PLIDM_ROOT_GROUP);

        Node node = getNode(nodeFqn);

        if (node != null) {
            Group rootGroup = (Group) node.get(NODE_OBJECT_KEY);

            if (log.isTraceEnabled() && rootGroup != null) {
                log.trace(this.toString() + "GateIn root group found in cache" + ";namespace=" + ns);
            }
View Full Code Here

        Fqn nodeFqn = getFqn(ns, NODE_PLIDM_ROOT_GROUP);

        Node node = getNode(nodeFqn);

        if (node != null) {
            Group rootGroup = (Group) node.get(NODE_OBJECT_KEY);

            if (log.isTraceEnabled() && rootGroup != null) {
                log.trace(this.toString() + "GateIn root group found in cache" + ";namespace=" + ns);
            }
View Full Code Here

                  new ClassObjectFilter(Group.class)).iterator();

            boolean found = false;
            while (iter.hasNext())
            {
               Group g = (Group) iter.next();
               if (g.equals(group))
               {
                  found = true;
                  break;
               }
            }
View Full Code Here

      conversation.begin();
   }
  
   public @Transactional void deleteGroup(String name, String groupType) throws IdentityException
   {
      Group group = new GroupImpl(name, groupType);
      identitySession.getPersistenceManager().removeGroup(group, true);
   }
View Full Code Here

    }

    public
    @Transactional
    void deleteGroup(String name, String groupType) throws IdentityException {
        Group group = new GroupImpl(name, groupType);
        identitySession.getPersistenceManager().removeGroup(group, true);
    }
View Full Code Here

TOP

Related Classes of org.picketlink.idm.api.Group

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.