KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > info > magnolia > module > admininterface > dialogs > GroupEditDialog


1 /**
2  *
3  * Magnolia and its source-code is licensed under the LGPL.
4  * You may copy, adapt, and redistribute this file for commercial or non-commercial use.
5  * When copying, adapting, or redistributing this document in keeping with the guidelines above,
6  * you are required to provide proper attribution to obinary.
7  * If you reproduce or distribute the document without making any substantive modifications to its content,
8  * please use the following attribution line:
9  *
10  * Copyright 1993-2006 obinary Ltd. (http://www.obinary.com) All rights reserved.
11  *
12  */

13 package info.magnolia.module.admininterface.dialogs;
14
15 import info.magnolia.cms.core.Content;
16
17 import javax.servlet.http.HttpServletRequest JavaDoc;
18 import javax.servlet.http.HttpServletResponse JavaDoc;
19
20
21 /**
22  * @author Sameer Charles $Id: GroupEditDialog.java 6341 2006-09-12 09:18:27Z philipp $
23  */

24 public class GroupEditDialog extends UserEditDialog {
25
26     /**
27      * Stable serialVersionUID.
28      */

29     private static final long serialVersionUID = 222L;
30
31     /**
32      * @param name
33      * @param request
34      * @param response
35      * @param configNode
36      */

37     public GroupEditDialog(String JavaDoc name, HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response, Content configNode) {
38         super(name, request, response, configNode);
39     }
40
41     /**
42      * Write ACL entries under the given node
43      * @param node under which ACL for all workspaces needs to be created
44      */

45     protected void writeACL(Content node) {
46         // do nothing
47
}
48
49 }
50
Popular Tags