Skip to content

Commit

Permalink
Add KRAACLAdminServlet
Browse files Browse the repository at this point in the history
The KRAACLAdminServlet has been added to provide a separate class
for each servlet in web.xml.
  • Loading branch information
edewata committed Jul 20, 2023
1 parent cd0bb5e commit a9ab3c1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion base/kra/shared/webapps/kra/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@

<servlet>
<servlet-name> kraacl </servlet-name>
<servlet-class> com.netscape.cms.servlet.admin.ACLAdminServlet </servlet-class>
<servlet-class> com.netscape.cms.servlet.admin.KRAACLAdminServlet </servlet-class>
<init-param><param-name> ID </param-name>
<param-value> kraacl </param-value> </init-param>
<init-param><param-name> AuthzMgr </param-name>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.servlet.admin;

public class KRAACLAdminServlet extends ACLAdminServlet {
private static final long serialVersionUID = 1L;
}

0 comments on commit a9ab3c1

Please sign in to comment.