[embjopr-issues] [JBoss JIRA] Commented: (EMBJOPR-108) Add support for local-tx connection factories

Ian Springer (JIRA) jira-events at lists.jboss.org
Fri Mar 20 14:40:25 EDT 2009


    [ https://jira.jboss.org/jira/browse/EMBJOPR-108?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12458435#action_12458435 ] 

Ian Springer commented on EMBJOPR-108:
--------------------------------------

I based the Resource types I exposed off of the ConnectionFactoryTypes enum from org.jboss.deployers.spi.management.KnownComponentTypes:

   /**
    * Enums for generic ConnectionFactory types
    */
   public enum ConnectionFactoryTypes
   {
      XA("ConnectionFactory", "XA"), NoTx("ConnectionFactory", "NoTx");

      private final String type;
      private final String subtype;
      private ConnectionFactoryTypes(String type, String subtype)
      {
         this.type = type;
         this.subtype = subtype;
      }

      public String type()
      {
         return type;
      }
      public String subtype()
      {
         return subtype;
      }
      public ComponentType getType()
      {
         return new ComponentType(type, subtype);
      }
   };

If there is also a LocalTX type, then this enum should probably be updated. Scott, can you comment?



> Add support for local-tx connection factories
> ---------------------------------------------
>
>                 Key: EMBJOPR-108
>                 URL: https://jira.jboss.org/jira/browse/EMBJOPR-108
>             Project: Embedded Jopr
>          Issue Type: Task
>            Reporter: Charles Crouch
>            Assignee: Ian Springer
>             Fix For: 1.2
>
>
> We have support for XA and no-tx ones, we should add local-tx. This page describes the different varieties http://www.jboss.org/community/docs/DOC-9326

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the embjopr-issues mailing list