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

org.jboss.jca.common.metadata.spec.ActivationSpecImpl 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.spec;

import org.jboss.jca.common.api.metadata.CopyUtil;
import org.jboss.jca.common.api.metadata.CopyableMetaData;
import org.jboss.jca.common.api.metadata.spec.Activationspec;
import org.jboss.jca.common.api.metadata.spec.ConfigProperty;
import org.jboss.jca.common.api.metadata.spec.RequiredConfigProperty;
import org.jboss.jca.common.api.metadata.spec.XsdString;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * @author Stefano Maestri
 * @author Jesper Pedersen
 */
public class ActivationSpecImpl implements Activationspec
{
   private static final long serialVersionUID = 1L;

   private XsdString activationspecClass;
   private List requiredConfigProperty;
   private String id;
   private List configProperties;

   /**
    * Constructor
    * @param activationspecClass full qualified name of the class
    * @param requiredConfigProperty a List of required config properties
    * @param configProperties a list of (optional) config property
    * @param id xmlID
    */
   public ActivationSpecImpl(XsdString activationspecClass, List requiredConfigProperty,
                             List configProperties, String id)
   {
      this.activationspecClass = activationspecClass;
      if (!XsdString.isNull(this.activationspecClass))
         this.activationspecClass.setTag(XML.ActivationSpecTag.ACTIVATIONSPEC_CLASS.toString());
      if (requiredConfigProperty != null)
      {
         this.requiredConfigProperty = new ArrayList(requiredConfigProperty);
      }
      else
      {
         this.requiredConfigProperty = new ArrayList(0);
      }
      this.id = id;
      if (configProperties != null)
      {
         this.configProperties = new ArrayList(configProperties);
      }
      else
      {
         this.configProperties = new ArrayList(0);
      }
   }

   /**
    * {@inheritDoc}
    */
   public XsdString getActivationspecClass()
   {
      return activationspecClass;
   }

   /**
    * {@inheritDoc}
    */
   public List getRequiredConfigProperties()
   {
      return Collections.unmodifiableList(requiredConfigProperty);
   }

   /**
    * {@inheritDoc}
    */
   public String getId()
   {
      return id;
   }

   /**
    * {@inheritDoc}
    */
   public List getConfigProperties()
   {
      return Collections.unmodifiableList(configProperties);
   }

   /**
    * {@inheritDoc}
    */
   public CopyableMetaData copy()
   {
      return new ActivationSpecImpl(CopyUtil.clone(activationspecClass),
                                    CopyUtil.cloneList(requiredConfigProperty),
                                    CopyUtil.cloneList(configProperties),
                                    CopyUtil.cloneString(id));
   }

   /**
    * {@inheritDoc}
    */
   public int hashCode()
   {
      final int prime = 31;
      int result = 1;
      result = prime * result + ((activationspecClass == null) ? 0 : activationspecClass.hashCode());
      result = prime * result + ((id == null) ? 0 : id.hashCode());
      result = prime * result + ((requiredConfigProperty == null) ? 0 : requiredConfigProperty.hashCode());
      result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
      return result;
   }

   /**
    * {@inheritDoc}
    */
   public boolean equals(Object obj)
   {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (!(obj instanceof ActivationSpecImpl))
         return false;
      ActivationSpecImpl other = (ActivationSpecImpl) obj;
      if (activationspecClass == null)
      {
         if (other.activationspecClass != null)
            return false;
      }
      else if (!activationspecClass.equals(other.activationspecClass))
         return false;
      if (id == null)
      {
         if (other.id != null)
            return false;
      }
      else if (!id.equals(other.id))
         return false;
      if (requiredConfigProperty == null)
      {
         if (other.requiredConfigProperty != null)
            return false;
      }
      else if (!requiredConfigProperty.equals(other.requiredConfigProperty))
         return false;
      if (configProperties == null)
      {
         if (other.configProperties != null)
            return false;
      }
      else if (!configProperties.equals(other.configProperties))
         return false;
      return true;
   }

   /**
    * {@inheritDoc}
    */
   public String toString()
   {
      StringBuilder sb = new StringBuilder();

      sb.append("");

      sb.append(activationspecClass);

      if (requiredConfigProperty != null)
      {
         for (RequiredConfigProperty rcp : requiredConfigProperty)
         {
            sb.append(rcp);
         }
      }

      if (configProperties != null)
      {
         for (ConfigProperty cp : configProperties)
         {
            sb.append(cp);
         }
      }

      sb.append("");

      return sb.toString();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy