[jboss-cvs] JBossAS SVN: r64982 - projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 30 19:26:30 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-08-30 19:26:30 -0400 (Thu, 30 Aug 2007)
New Revision: 64982

Added:
   projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/AllowedTxSupportMetaData.java
   projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/TxSupportMetaData.java
Modified:
   projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/ConnMetaData.java
Log:
Add an enum type property

Added: projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/AllowedTxSupportMetaData.java
===================================================================
--- projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/AllowedTxSupportMetaData.java	                        (rev 0)
+++ projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/AllowedTxSupportMetaData.java	2007-08-30 23:26:30 UTC (rev 64982)
@@ -0,0 +1,62 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * 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.test.deployers.deployer.support;
+
+import java.util.HashSet;
+
+import org.jboss.beans.info.spi.PropertyInfo;
+import org.jboss.managed.api.Fields;
+import org.jboss.managed.spi.factory.ManagedPropertyConstraintsPopulator;
+import org.jboss.managed.spi.factory.ManagedPropertyConstraintsPopulatorFactory;
+import org.jboss.metatype.api.types.EnumMetaType;
+import org.jboss.metatype.api.values.EnumValueSupport;
+import org.jboss.metatype.api.values.MetaValue;
+
+/**
+ * Contraints populator for the TxSupportMetaData enum
+ * @author Scott.Stark at jboss.org
+ * @version $Revision$
+ */
+public class AllowedTxSupportMetaData implements
+      ManagedPropertyConstraintsPopulator,
+      ManagedPropertyConstraintsPopulatorFactory
+{
+   private static EnumMetaType TYPE = new EnumMetaType(TxSupportMetaData.values());
+   private static HashSet<MetaValue> values = new HashSet<MetaValue>();
+   static
+   {
+      values.add(new EnumValueSupport(TYPE, TxSupportMetaData.NONE));
+      values.add(new EnumValueSupport(TYPE, TxSupportMetaData.LOCAL));
+      values.add(new EnumValueSupport(TYPE, TxSupportMetaData.XA));
+   }
+
+   public void populateManagedProperty(Class attachmentClass, PropertyInfo info, Fields fields)
+   {
+      fields.setField(Fields.LEGAL_VALUES, values);
+   }
+
+   public ManagedPropertyConstraintsPopulator newInstance()
+   {
+      return this;
+   }
+
+}


Property changes on: projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/AllowedTxSupportMetaData.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native

Modified: projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/ConnMetaData.java
===================================================================
--- projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/ConnMetaData.java	2007-08-30 23:25:37 UTC (rev 64981)
+++ projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/ConnMetaData.java	2007-08-30 23:26:30 UTC (rev 64982)
@@ -45,6 +45,8 @@
    private String jndiName;
    private String username;
    private char[] password;
+   private boolean localTransactions;
+   private TxSupportMetaData txSupportMetaData;
    private Properties connProperties;
    private SecMetaData securityMetaData;
 
@@ -115,6 +117,28 @@
       this.connProperties = connProperties;
    }
 
+   @ManagementProperty(name="local-transaction")
+   public Boolean getLocalTransactions()
+   {
+      return localTransactions;
+   }
+
+   public void setLocalTransactions(Boolean localTransactions)
+   {
+      this.localTransactions = localTransactions;
+   }
+
+   @ManagementProperty(name="tx-metadata",
+         constraintsFactory=AllowedTxSupportMetaData.class)
+   public TxSupportMetaData getTransactionSupportMetaData()
+   {
+      return txSupportMetaData;
+   }
+   public void setTransactionSupportMetaData(TxSupportMetaData md)
+   {
+      this.txSupportMetaData = md;
+   }   
+
    @ManagementProperty(name="security-domain", managed=true)
    public SecMetaData getSecurityMetaData()
    {

Added: projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/TxSupportMetaData.java
===================================================================
--- projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/TxSupportMetaData.java	                        (rev 0)
+++ projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/TxSupportMetaData.java	2007-08-30 23:26:30 UTC (rev 64982)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * 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.test.deployers.deployer.support;
+
+/**
+ * @author Scott.Stark at jboss.org
+ * @version $Revision$
+ */
+public enum TxSupportMetaData
+{
+   NONE, LOCAL, XA;
+}


Property changes on: projects/microcontainer/trunk/deployers-impl/src/tests/org/jboss/test/deployers/deployer/support/TxSupportMetaData.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native




More information about the jboss-cvs-commits mailing list