(no commit message)
[utils] / security / usermgt / src / main / java / org / wamblee / security / authorization / AbstractAuthorizationRule.java
index 828a89151e51c9e41185261f9ab8f575b87fd6e9..9ac92424068524f56c7526f6e5dd5122e9ea9f5b 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.security.authorization;
 
 import javax.persistence.DiscriminatorColumn;
@@ -36,19 +36,19 @@ import javax.persistence.Version;
 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
 @DiscriminatorColumn(name = "TYPE")
 public abstract class AbstractAuthorizationRule implements AuthorizationRule {
-    
+
     @Id
     @GeneratedValue(strategy = GenerationType.AUTO)
     private Long id;
 
     @Version
     private int version;
-    
-    public AbstractAuthorizationRule() { 
+
+    public AbstractAuthorizationRule() {
         // Empty
     }
-    
-    public AbstractAuthorizationRule(AbstractAuthorizationRule aRule) { 
+
+    public AbstractAuthorizationRule(AbstractAuthorizationRule aRule) {
         id = aRule.id;
         version = aRule.version;
     }