Changes SecurityConstants to a normal class with private constructor.
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4283 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
faa98453e3
commit
4c8615624e
|
|
@ -35,6 +35,7 @@ import java.util.Iterator;
|
||||||
* @author <a href="mailto:yannick.buelter@yabue.de">Yannick Bülter</a>
|
* @author <a href="mailto:yannick.buelter@yabue.de">Yannick Bülter</a>
|
||||||
*/
|
*/
|
||||||
class RoleListModel implements ListModel {
|
class RoleListModel implements ListModel {
|
||||||
|
|
||||||
private final Collection<Role> m_roles;
|
private final Collection<Role> m_roles;
|
||||||
|
|
||||||
private Iterator<Role> iterator;
|
private Iterator<Role> iterator;
|
||||||
|
|
|
||||||
|
|
@ -24,11 +24,14 @@ package com.arsdigita.cms.util;
|
||||||
* <p>Security class used for checking and granting privileges in
|
* <p>Security class used for checking and granting privileges in
|
||||||
* CMS.</p>
|
* CMS.</p>
|
||||||
*
|
*
|
||||||
|
* @author <a href="mailto:yannick.buelter@yabue.de">Yannick Bülter</a>
|
||||||
* @author Michael Pih
|
* @author Michael Pih
|
||||||
* @version $Revision: #7 $ $DateTime: 2004/08/17 23:15:09 $
|
* @version $Revision: #7 $ $DateTime: 2004/08/17 23:15:09 $
|
||||||
* @version $Id: SecurityConstants.java 2090 2010-04-17 08:04:14Z pboy $
|
* @version $Id: SecurityConstants.java 2090 2010-04-17 08:04:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public interface SecurityConstants {
|
public class SecurityConstants {
|
||||||
|
|
||||||
|
private SecurityConstants(){}
|
||||||
|
|
||||||
// CMS Actions
|
// CMS Actions
|
||||||
public final static String STAFF_ADMIN = "staff_admin";
|
public final static String STAFF_ADMIN = "staff_admin";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue