protected void handleOperation()

in src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/CreateGroupServlet.java [196:214]


    protected void handleOperation(SlingHttpServletRequest request,
            PostResponse response, List<Modification> changes)
            throws RepositoryException {

        Session session = request.getResourceResolver().adaptTo(Session.class);
        String principalName = request.getParameter(SlingPostConstants.RP_NODE_NAME);
        Group group = createGroup(session, 
                principalName, 
                request.getRequestParameterMap(), 
                changes);

        String groupPath = systemUserManagerPaths.getGroupPrefix()
            + group.getID();
        response.setPath(groupPath);
        response.setLocation(externalizePath(request, groupPath));
        response.setParentLocation(externalizePath(request,
                systemUserManagerPaths.getGroupsPath()));
        
    }