All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.jca.common.metadata.resourceadapter.ActivationImpl Maven / Gradle / Ivy

Go to download

IronJacamar is an implementation of the Java EE Connector Architecture 1.6 specification

There is a newer version: 3.0.10.Final
Show newest version
/*
 * IronJacamar, a Java EE Connector Architecture implementation
 * Copyright 2008, Red Hat Inc, 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.common.metadata.resourceadapter;

import org.jboss.jca.common.api.metadata.common.TransactionSupportEnum;
import org.jboss.jca.common.api.metadata.resourceadapter.Activation;
import org.jboss.jca.common.api.metadata.resourceadapter.AdminObject;
import org.jboss.jca.common.api.metadata.resourceadapter.ConnectionDefinition;
import org.jboss.jca.common.api.metadata.resourceadapter.WorkManager;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

/**
 * A resource adapter activation
 *
 * @author Jesper Pedersen
 */
public class ActivationImpl implements Activation
{
   /** The serialVersionUID */
   private static final long serialVersionUID = 1L;

   /** transactionSupport **/
   protected TransactionSupportEnum transactionSupport;

   /**
    *  configProperties
    */
   protected Map configProperties;

   /**
    *  adminObjects
    */
   protected List adminObjects;

   /**
    *  connectionDefinitions
    */
   protected List connectionDefinitions;

   /**
    *  beanValidationGroups
    */
   protected List beanValidationGroups;

   /** bootstrapContext **/
   protected String bootstrapContext;

   /** archive */
   protected String archive;

   /** id */
   protected String id;

   /** workmanager */
   protected WorkManager workmanager;

   /**
    * Constructor
    *
    * @param id The id
    * @param archive archive
    * @param transactionSupport transactionSupport
    * @param connectionDefinitions connectionDefinitions
    * @param adminObjects adminObjects
    * @param configProperties configProperties
    * @param beanValidationGroups beanValidationGroups
    * @param bootstrapContext bootstrapContext
    * @param workmanager workmanager
    */
   public ActivationImpl(String id, String archive, TransactionSupportEnum transactionSupport,
                         List connectionDefinitions, List adminObjects,
                         Map configProperties, List beanValidationGroups,
                         String bootstrapContext, WorkManager workmanager)
   {
      this.id = id;
      this.archive = archive;
      this.transactionSupport = transactionSupport;

      if (connectionDefinitions != null)
      {
         this.connectionDefinitions = new ArrayList(connectionDefinitions.size());
         this.connectionDefinitions.addAll(connectionDefinitions);
      }
      else
      {
         this.connectionDefinitions = null;
      }

      if (adminObjects != null)
      {
         this.adminObjects = new ArrayList(adminObjects.size());
         this.adminObjects.addAll(adminObjects);
      }
      else
      {
         this.adminObjects = null;
      }

      if (configProperties != null)
      {
         this.configProperties = new HashMap(configProperties.size());
         this.configProperties.putAll(configProperties);
      }
      else
      {
         this.configProperties = null;
      }

      if (beanValidationGroups != null)
      {
         this.beanValidationGroups = new ArrayList(beanValidationGroups.size());
         this.beanValidationGroups.addAll(beanValidationGroups);
      }
      else
      {
         this.beanValidationGroups = null;
      }

      this.bootstrapContext = bootstrapContext;
      this.workmanager = workmanager;
   }

   /**
    * Get the transactionSupport.
    *
    * @return the transactionSupport.
    */
   @Override
   public TransactionSupportEnum getTransactionSupport()
   {
      return transactionSupport;
   }

   /**
    * Get the connectionFactories.
    *
    * @return the connectionFactories.
    */
   @Override
   public List getConnectionDefinitions()
   {
      if (connectionDefinitions == null)
         return null;

      return Collections.unmodifiableList(connectionDefinitions);
   }

   /**
    * Get the adminObjects.
    *
    * @return the adminObjects.
    */
   @Override
   public List getAdminObjects()
   {
      return adminObjects == null ? null : Collections.unmodifiableList(adminObjects);
   }

   /**
    * Get the configProperties.
    *
    * @return the configProperties.
    */
   @Override
   public Map getConfigProperties()
   {
      return configProperties == null ? null : Collections.unmodifiableMap(configProperties);
   }

   /**
    * Get the beanValidationGroups.
    *
    * @return the beanValidationGroups.
    */
   @Override
   public List getBeanValidationGroups()
   {
      return beanValidationGroups == null ? null : Collections.unmodifiableList(beanValidationGroups);
   }

   /**
    * Get the bootstrapContext.
    *
    * @return the bootstrapContext.
    */
   @Override
   public String getBootstrapContext()
   {
      return bootstrapContext;
   }

   /**
    * Get the id.
    *
    * @return the value.
    */
   @Override
   public String getId()
   {
      return id;
   }

   /**
    * Get the archive.
    *
    * @return the archive.
    */
   @Override
   public String getArchive()
   {
      return archive;
   }

   /**
    * {@inheritDoc}
    */
   public WorkManager getWorkManager()
   {
      return workmanager;
   }

   @Override
   public int hashCode()
   {
      final int prime = 31;
      int result = 1;
      result = prime * result + ((adminObjects == null) ? 0 : adminObjects.hashCode());
      result = prime * result + ((beanValidationGroups == null) ? 0 : beanValidationGroups.hashCode());
      result = prime * result + ((bootstrapContext == null) ? 0 : bootstrapContext.hashCode());
      result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
      result = prime * result + ((connectionDefinitions == null) ? 0 : connectionDefinitions.hashCode());
      result = prime * result + ((transactionSupport == null) ? 0 : transactionSupport.hashCode());
      result = prime * result + ((id == null) ? 0 : id.hashCode());
      result = prime * result + ((archive == null) ? 0 : archive.hashCode());
      result = prime * result + ((workmanager == null) ? 0 : workmanager.hashCode());
      return result;
   }

   @Override
   public boolean equals(Object obj)
   {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (!(obj instanceof ActivationImpl))
         return false;
      ActivationImpl other = (ActivationImpl) obj;
      if (adminObjects == null)
      {
         if (other.adminObjects != null)
            return false;
      }
      else if (!adminObjects.equals(other.adminObjects))
         return false;
      if (beanValidationGroups == null)
      {
         if (other.beanValidationGroups != null)
            return false;
      }
      else if (!beanValidationGroups.equals(other.beanValidationGroups))
         return false;
      if (bootstrapContext == null)
      {
         if (other.bootstrapContext != null)
            return false;
      }
      else if (!bootstrapContext.equals(other.bootstrapContext))
         return false;
      if (configProperties == null)
      {
         if (other.configProperties != null)
            return false;
      }
      else if (!configProperties.equals(other.configProperties))
         return false;
      if (connectionDefinitions == null)
      {
         if (other.connectionDefinitions != null)
            return false;
      }
      else if (!connectionDefinitions.equals(other.connectionDefinitions))
         return false;
      if (transactionSupport != other.transactionSupport)
         return false;
      if (id == null)
      {
         if (other.id != null)
            return false;
      }
      else if (!id.equals(other.id))
         return false;
      if (archive == null)
      {
         if (other.archive != null)
            return false;
      }
      else if (!archive.equals(other.archive))
         return false;
      if (workmanager == null)
      {
         if (other.workmanager != null)
            return false;
      }
      else if (!workmanager.equals(other.workmanager))
         return false;
      return true;
   }

   @Override
   public String toString()
   {
      StringBuilder sb = new StringBuilder(1024);

      if (archive != null)
      {
         sb.append("");

      if (archive != null)
      {
         sb.append("<").append(Activation.Tag.ARCHIVE).append(">");
         sb.append(archive);
         sb.append("");
      }

      if (beanValidationGroups != null && beanValidationGroups.size() > 0)
      {
         sb.append("<").append(Activation.Tag.BEAN_VALIDATION_GROUPS).append(">");
         for (String bvg : beanValidationGroups)
         {
            sb.append("<").append(Activation.Tag.BEAN_VALIDATION_GROUP).append(">");
            sb.append(bvg);
            sb.append("");
         }
         sb.append("");
      }

      if (bootstrapContext != null)
      {
         sb.append("<").append(Activation.Tag.BOOTSTRAP_CONTEXT).append(">");
         sb.append(bootstrapContext);
         sb.append("");
      }

      if (configProperties != null && configProperties.size() > 0)
      {
         Iterator> it = configProperties.entrySet().iterator();
         while (it.hasNext())
         {
            Map.Entry entry = it.next();

            sb.append("<").append(Activation.Tag.CONFIG_PROPERTY);
            sb.append(" name=\"").append(entry.getKey()).append("\">");
            sb.append(entry.getValue());
            sb.append("");
         }
      }
      
      if (transactionSupport != null)
      {
         sb.append("<").append(Activation.Tag.TRANSACTION_SUPPORT).append(">");
         sb.append(transactionSupport);
         sb.append("");
      }

      if (workmanager != null)
      {
         sb.append(workmanager);
      }

      if (connectionDefinitions != null && connectionDefinitions.size() > 0)
      {
         sb.append("<").append(Activation.Tag.CONNECTION_DEFINITIONS).append(">");
         for (ConnectionDefinition cd : connectionDefinitions)
         {
            sb.append(cd);
         }
         sb.append("");
      }

      if (adminObjects != null && adminObjects.size() > 0)
      {
         sb.append("<").append(Activation.Tag.ADMIN_OBJECTS).append(">");
         for (AdminObject ao : adminObjects)
         {
            sb.append(ao);
         }
         sb.append("");
      }

      if (archive != null)
      {
         sb.append("");
      }
      else
      {
         sb.append("");
      }
      
      return sb.toString();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy