[jboss-cvs] JBossAS SVN: r101646 - in projects/jboss-jca/trunk/validator/src/main: java/org/jboss/jca/validator/rules/ao and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 1 02:01:16 EST 2010


Author: jeff.zhang
Date: 2010-03-01 02:01:15 -0500 (Mon, 01 Mar 2010)
New Revision: 101646

Added:
   projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/rules/ao/AORAA.java
Modified:
   projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/Validator.java
   projects/jboss-jca/trunk/validator/src/main/resources/validator.properties
Log:
[JBJCA-292] add ao.AORAA rule

Modified: projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/Validator.java
===================================================================
--- projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/Validator.java	2010-03-01 06:45:27 UTC (rev 101645)
+++ projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/Validator.java	2010-03-01 07:01:15 UTC (rev 101646)
@@ -59,7 +59,8 @@
       "org.jboss.jca.validator.rules.as.ASConstructor",
       "org.jboss.jca.validator.rules.as.ASConfigProperties",
       "org.jboss.jca.validator.rules.ao.AOConstructor",
-      "org.jboss.jca.validator.rules.ao.AOConfigProperties"
+      "org.jboss.jca.validator.rules.ao.AOConfigProperties",
+      "org.jboss.jca.validator.rules.ao.AORAA"
    };
    
    private static final String[] OBJECT_RULES = {

Added: projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/rules/ao/AORAA.java
===================================================================
--- projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/rules/ao/AORAA.java	                        (rev 0)
+++ projects/jboss-jca/trunk/validator/src/main/java/org/jboss/jca/validator/rules/ao/AORAA.java	2010-03-01 07:01:15 UTC (rev 101646)
@@ -0,0 +1,86 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008-2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jca.validator.rules.ao;
+
+import org.jboss.jca.validator.Failure;
+import org.jboss.jca.validator.Key;
+import org.jboss.jca.validator.Rule;
+import org.jboss.jca.validator.Severity;
+import org.jboss.jca.validator.Validate;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.ResourceBundle;
+
+import javax.resource.Referenceable;
+import javax.resource.spi.ResourceAdapterAssociation;
+
+/**
+ * An AdminObject must implement javax.resource.Referenceable and java.io.Serializable 
+ * interfaces if javax.resource.spi.ResourceAdapterAssociation is implemented Code
+ */
+public class AORAA implements Rule
+{
+   /** Section */
+   private static final String SECTION = "13.4.2.3";
+
+   /**
+    * Constructor
+    */
+   public AORAA()
+   {
+   }
+
+   /**
+    * Validate
+    * @param vo The validate object
+    * @param rb The resource bundle 
+    * @return The list of failures found; <code>null</code> if none
+    */
+   @SuppressWarnings("unchecked")
+   public List<Failure> validate(Validate vo, ResourceBundle rb)
+   {
+      if (vo != null && 
+         Key.ADMIN_OBJECT == vo.getKey() &&
+         ResourceAdapterAssociation.class.isAssignableFrom(vo.getClazz()))
+      {
+         if (!Referenceable.class.isAssignableFrom(vo.getClazz()) ||
+            !Serializable.class.isAssignableFrom(vo.getClazz()))
+         {
+            List<Failure> failures = new ArrayList<Failure>(1);
+
+            Failure failure = new Failure(Severity.ERROR,
+                                          SECTION,
+                                          rb.getString("ao.AORAA"),
+                                          vo.getClazz().getName());
+            failures.add(failure);
+
+            return failures;
+         }
+      }
+
+      return null;
+   }
+}
+

Modified: projects/jboss-jca/trunk/validator/src/main/resources/validator.properties
===================================================================
--- projects/jboss-jca/trunk/validator/src/main/resources/validator.properties	2010-03-01 06:45:27 UTC (rev 101645)
+++ projects/jboss-jca/trunk/validator/src/main/resources/validator.properties	2010-03-01 07:01:15 UTC (rev 101646)
@@ -30,3 +30,4 @@
 ao.cnfe=ClassNotFoundException during AdminObject creation
 ao.AOConstructor=An AdminObject must have a default constructor
 ao.AOConfigProperties=Invalid config-property-type for AdminObject.
+ao.AORAA=An AdminObject must implement javax.resource.Referenceable and java.io.Serializable interfaces if javax.resource.spi.ResourceAdapterAssociation is implemented Code




More information about the jboss-cvs-commits mailing list