(no commit message)
authorErik Brakkee <erik@brakkee.org>
Fri, 30 Apr 2010 22:08:34 +0000 (22:08 +0000)
committerErik Brakkee <erik@brakkee.org>
Fri, 30 Apr 2010 22:08:34 +0000 (22:08 +0000)
security/impl/src/main/resources/hbm/AuthorizationRule.hbm.xml
security/impl/src/main/resources/hbm/AuthorizationService.hbm.xml
security/impl/src/main/resources/hbm/OperationCondition.hbm.xml
security/impl/src/main/resources/hbm/OperationCondition.hbm.xmlxx
security/impl/src/main/resources/hbm/PathCondition.hbm.xml
security/impl/src/main/resources/hbm/UserCondition.hbm.xml

index 33f5d942ef6d1b2aafc19dc078ca054d095b0ee8..006c0a418db1eaf8f65559e51145e9d5bb66edf9 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.AuthorizationRule" 
+        <class name="org.wamblee.security.authorization.AbstractAuthorizationRule" 
                table="AUTHORIZATION_RULES" 
                select-before-update="true"
                lazy="false">
                 <property name="authorizationResultString" column="RESULT"/>
                 <property name="resourceClassName" column="RESOURCE_CLASSNAME"/>
                 <many-to-one name="userCondition" 
-                             class="org.wamblee.security.authorization.UserCondition"
+                             class="org.wamblee.security.authorization.AbstractUserCondition"
                              column="USERCONDITION_ID"
                              cascade="all"
                              lazy="false"/>
                 <many-to-one name="pathCondition" 
-                    class="org.wamblee.security.authorization.PathCondition"
+                    class="org.wamblee.security.authorization.AbstractPathCondition"
                     column="PATHCONDITION_ID"
                     cascade="all"
                     lazy="false"/>
                 <many-to-one name="operationCondition" 
-                    class="org.wamblee.security.authorization.OperationCondition"
+                    class="org.wamblee.security.authorization.AbstractOperationCondition"
                     column="OPERATIONCONDITION_ID"
                     cascade="all"
                     lazy="false"/> 
index f8e036ca61a8aa74c5cfad73ae80414496d5db15..4396b6b77b53cec06e42692c1bce76252b6513fd 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.AuthorizationService" table="AUTHORIZATION_SERVICE" 
+        <class name="org.wamblee.security.authorization.AbstractAuthorizationService" table="AUTHORIZATION_SERVICE" 
                select-before-update="true">
             <id name="primaryKey" column="ID" type="long">
                 <generator class="native"/>
@@ -21,7 +21,7 @@
                 <list name="mappedRules" table="AUTHORIZATION_SERVICE_RULES" lazy="false" cascade="all-delete-orphan">
                     <key column="ID"/>
                     <index column="POSITION"/>
-                    <many-to-many class="org.wamblee.security.authorization.AuthorizationRule"
+                    <many-to-many class="org.wamblee.security.authorization.AbstractAuthorizationRule"
                        column="RULE_ID"/>
                 </list>
             </subclass>
@@ -30,7 +30,7 @@
         
         <query name="findAuthorizationServiceByName">
             select service
-            from org.wamblee.security.authorization.AuthorizationService service
+            from org.wamblee.security.authorization.AbstractAuthorizationService service
             where service.name = :name 
         </query>
         
index 5ab4b0d8b9e1df9c22072d6c5b9e96b454be33cd..d5dcbc892f6638bca4e033cad0a2ee8d85c05045 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.OperationCondition" table="OPERATION_CONDITIONS" 
+        <class name="org.wamblee.security.authorization.AbstractOperationCondition" table="OPERATION_CONDITIONS" 
                select-before-update="true"
                lazy="false">
             <id name="primaryKey" column="ID" type="long">
index 250030e0eebf711b35ad9eabd4931ac332c20fae..5fd0562b486b00226e5fbf269cb379c23dadfd9f 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.PathCondition" table="PATH_CONDITIONS" 
+        <class name="org.wamblee.security.authorization.AbstractPathCondition" table="PATH_CONDITIONS" 
                select-before-update="true"
                lazy="false">
             <id name="primaryKey" column="ID" type="long">
index c43c0a831047f071173b440c3d2b1c7810e13b15..c401372bbe6698bf87e5f0acce85c43f502092cf 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.PathCondition" table="PATH_CONDITIONS" 
+        <class name="org.wamblee.security.authorization.AbstractPathCondition" table="PATH_CONDITIONS" 
                select-before-update="true"
                lazy="false">
             <id name="primaryKey" column="ID" type="long">
index fc83423d22ed0b87507d27b51a4df97eedd9bdf7..8079cf562c2f0b297b26f3c488b7a27553631f10 100644 (file)
@@ -5,7 +5,7 @@
     
     <hibernate-mapping>
         
-        <class name="org.wamblee.security.authorization.UserCondition" table="USER_CONDITIONS" 
+        <class name="org.wamblee.security.authorization.AbstractUserCondition" table="USER_CONDITIONS" 
                select-before-update="true"
                lazy="false">
             <id name="primaryKey" column="ID" type="long">