Github user PramodSSImmaneni commented on a diff in the pull request:

    https://github.com/apache/apex-malhar/pull/347#discussion_r73784474
  
    --- Diff: library/src/main/java/com/datatorrent/lib/io/jms/JMSBase.java ---
    @@ -76,18 +76,52 @@
       private transient Session session;
       private transient Destination destination;
     
    -  private String connectionFactoryClass;
    -  private Map<String, String> connectionFactoryProperties = 
Maps.newHashMap();
    +  private ConnectionFactoryBuilder connectionFactoryBuilder = new 
DefaultConnectionFactoryBuilder();
       private String ackMode = "CLIENT_ACKNOWLEDGE";
    -  private String clientId = "TestClient";
    -  private String subject = "TEST.FOO";
    +  private String clientId;
    +  private String subject;
       private int batch = 10;
       private int messageSize = 255;
       private boolean durable = false;
       private boolean topic = false;
       private boolean verbose = false;
       protected boolean transacted = true;
     
    +  public abstract static class ConnectionFactoryBuilder
    +  {
    +    protected Map<String, String> connectionFactoryProperties = 
Maps.newHashMap();
    +
    +    public Map<String, String> getConnectionFactoryProperties()
    +    {
    +      return connectionFactoryProperties;
    +    }
    +
    +    public void setConnectionFactoryProperties(Map<String, String> 
connectionFactoryProperties)
    +    {
    +      this.connectionFactoryProperties = connectionFactoryProperties;
    +    }
    +
    +    public abstract ConnectionFactory buildConnectionFactory();
    +  }
    +
    +  public static class DefaultConnectionFactoryBuilder extends 
ConnectionFactoryBuilder
    +  {
    +
    +    @Override
    +    public ConnectionFactory buildConnectionFactory()
    +    {
    +      ConnectionFactory cf;
    +      try {
    --- End diff --
    
    That means they would have to implement a builder that has similar 
functionality as the default builder isn't it. Why not add the 
connectionFactoryClass logic to the default builder
    
    if (connectionFactoryClass != null) {
            @SuppressWarnings("unchecked")
            Class<ConnectionFactory> clazz = 
(Class<ConnectionFactory>)Class.forName(connectionFactoryClass);
            cf = clazz.newInstance();
          } else {
            cf = new org.apache.activemq.ActiveMQConnectionFactory();
          }


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to