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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 8 02:54:30 EST 2009


Author: jeff.zhang
Date: 2009-12-08 02:54:30 -0500 (Tue, 08 Dec 2009)
New Revision: 97525

Added:
   projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/
   projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/MC.java
   projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/package.html
Removed:
   projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mcf/MC.java
Log:
[JBJCA-201] rename MC namespace

Copied: projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/MC.java (from rev 97524, projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mcf/MC.java)
===================================================================
--- projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/MC.java	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/MC.java	2009-12-08 07:54:30 UTC (rev 97525)
@@ -0,0 +1,80 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008-2009, 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.deployers.common.validator.rules.mc;
+
+import org.jboss.jca.deployers.common.validator.Failure;
+import org.jboss.jca.deployers.common.validator.Key;
+import org.jboss.jca.deployers.common.validator.Rule;
+import org.jboss.jca.deployers.common.validator.Severity;
+import org.jboss.jca.deployers.common.validator.ValidateObject;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.ResourceBundle;
+
+import javax.resource.spi.ManagedConnection;
+
+/**
+ * Must provide an implementation of the ManagedConnection interface.
+ */
+public class MC implements Rule
+{
+   /** Section */
+   private static final String SECTION = "6.5.4.5";
+
+   /**
+    * Constructor
+    */
+   public MC()
+   {
+   }
+
+   /**
+    * 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(ValidateObject vo, ResourceBundle rb)
+   {
+      if (vo != null && Key.MANAGED_CONNECTION == vo.getKey())
+      {
+         if (!(vo.getObject() instanceof ManagedConnection))
+         {
+            List<Failure> failures = new ArrayList<Failure>(1);
+
+            Failure failure = new Failure(Severity.ERROR,
+                                          SECTION,
+                                          rb.getString("mc.MC"),
+                                          vo.getObject().getClass().getName());
+            failures.add(failure);
+
+            return failures;
+         }
+      }
+
+      return null;
+   }
+}
+

Added: projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/package.html
===================================================================
--- projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/package.html	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mc/package.html	2009-12-08 07:54:30 UTC (rev 97525)
@@ -0,0 +1,3 @@
+<body>
+Validation rules for ManagedConnection.
+</body>

Deleted: projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mcf/MC.java
===================================================================
--- projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mcf/MC.java	2009-12-08 07:08:35 UTC (rev 97524)
+++ projects/jboss-jca/trunk/deployers/src/main/java/org/jboss/jca/deployers/common/validator/rules/mcf/MC.java	2009-12-08 07:54:30 UTC (rev 97525)
@@ -1,80 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008-2009, 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.deployers.common.validator.rules.mcf;
-
-import org.jboss.jca.deployers.common.validator.Failure;
-import org.jboss.jca.deployers.common.validator.Key;
-import org.jboss.jca.deployers.common.validator.Rule;
-import org.jboss.jca.deployers.common.validator.Severity;
-import org.jboss.jca.deployers.common.validator.ValidateObject;
-
-import java.util.ArrayList;
-import java.util.List;
-import java.util.ResourceBundle;
-
-import javax.resource.spi.ManagedConnection;
-
-/**
- * Must provide an implementation of the ManagedConnection interface.
- */
-public class MC implements Rule
-{
-   /** Section */
-   private static final String SECTION = "6.5.4.5";
-
-   /**
-    * Constructor
-    */
-   public MC()
-   {
-   }
-
-   /**
-    * 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(ValidateObject vo, ResourceBundle rb)
-   {
-      if (vo != null && Key.MANAGED_CONNECTION == vo.getKey())
-      {
-         if (!(vo.getObject() instanceof ManagedConnection))
-         {
-            List<Failure> failures = new ArrayList<Failure>(1);
-
-            Failure failure = new Failure(Severity.ERROR,
-                                          SECTION,
-                                          rb.getString("mc.MC"),
-                                          vo.getObject().getClass().getName());
-            failures.add(failure);
-
-            return failures;
-         }
-      }
-
-      return null;
-   }
-}
-




More information about the jboss-cvs-commits mailing list