You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2013/04/26 15:18:12 UTC

git commit: WICKET-5143 Create an interface for the roles replacing the current Roles class

Updated Branches:
  refs/heads/master fcc90139e -> 5a4f1a4d8


WICKET-5143 Create an interface for the roles replacing the current Roles class

Make Roles class non-final


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/5a4f1a4d
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/5a4f1a4d
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/5a4f1a4d

Branch: refs/heads/master
Commit: 5a4f1a4d81585ef961763d3764686676c62949da
Parents: fcc9013
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Apr 26 15:17:43 2013 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Apr 26 15:17:43 2013 +0200

----------------------------------------------------------------------
 .../authorization/strategies/role/Roles.java       |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/5a4f1a4d/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authorization/strategies/role/Roles.java
----------------------------------------------------------------------
diff --git a/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authorization/strategies/role/Roles.java b/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authorization/strategies/role/Roles.java
index beed5c7..5d272de 100644
--- a/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authorization/strategies/role/Roles.java
+++ b/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authorization/strategies/role/Roles.java
@@ -28,7 +28,7 @@ import org.apache.wicket.util.string.StringList;
  * @author Eelco Hillenius
  * @author Jonathan Locke
  */
-public final class Roles extends HashSet<String> implements IClusterable
+public class Roles extends HashSet<String> implements IClusterable
 {
 	private static final long serialVersionUID = 1L;