Author: sohil.shah(a)jboss.com
Date: 2010-01-18 18:17:20 -0500 (Mon, 18 Jan 2010)
New Revision: 1099
Added:
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/Preferences.java
Removed:
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/resource/Preferences.java
Log:
refactoring
Copied:
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/Preferences.java
(from rev 1098,
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/resource/Preferences.java)
===================================================================
---
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/Preferences.java
(rev 0)
+++
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/Preferences.java 2010-01-18
23:17:20 UTC (rev 1099)
@@ -0,0 +1,49 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software 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
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
+package org.jboss.security.authz.portal.component.environment;
+
+import java.util.Map;
+
+/**
+ * @author <a href="mailto:sshah@redhat.com">Sohil Shah</a>
+ */
+public class Preferences
+{
+ private Map<String, String> preferences;
+
+ public Preferences()
+ {
+
+ }
+
+ public Map<String, String> getPreferences()
+ {
+ return preferences;
+ }
+
+ public void setPreferences(Map<String, String> preferences)
+ {
+ this.preferences = preferences;
+ }
+ //-------------------------------------------------------------------------------------------------------------------------------------------------------------------
+
+}
Property changes on:
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/environment/Preferences.java
___________________________________________________________________
Name: svn:mergeinfo
+
Deleted:
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/resource/Preferences.java
===================================================================
---
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/resource/Preferences.java 2010-01-18
23:11:34 UTC (rev 1098)
+++
authz/trunk/portal-profile/src/main/java/org/jboss/security/authz/portal/component/resource/Preferences.java 2010-01-18
23:17:20 UTC (rev 1099)
@@ -1,49 +0,0 @@
-/*
-* JBoss, a division of Red Hat
-* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software 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
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-*/
-package org.jboss.security.authz.portal.component.resource;
-
-import java.util.Map;
-
-/**
- * @author <a href="mailto:sshah@redhat.com">Sohil Shah</a>
- */
-public class Preferences
-{
- private Map<String, String> preferences;
-
- public Preferences()
- {
-
- }
-
- public Map<String, String> getPreferences()
- {
- return preferences;
- }
-
- public void setPreferences(Map<String, String> preferences)
- {
- this.preferences = preferences;
- }
- //-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-
-}