Enum EJBComponentType

java.lang.Object
java.lang.Enum<EJBComponentType>
org.jboss.as.ejb3.subsystem.deployment.EJBComponentType
All Implemented Interfaces:
Serializable, Comparable<EJBComponentType>

public enum EJBComponentType extends Enum<EJBComponentType>
Enumeration of types of manageable Jakarta Enterprise Beans components.
Author:
Brian Stansberry (c) 2011 Red Hat Inc.
  • Enum Constant Details

  • Method Details

    • values

      public static EJBComponentType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EJBComponentType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getResourceType

      public String getResourceType()
    • getComponentClass

      public Class<? extends EJBComponent> getComponentClass()
    • getComponentDescriptionClass

      public Class<? extends EJBComponentDescription> getComponentDescriptionClass()
    • hasPool

      public boolean hasPool()
    • hasTimer

      public boolean hasTimer()
    • getPool

      public Pool<?> getPool(EJBComponent component)
    • getRuntimeHandler

      public AbstractEJBComponentRuntimeHandler<?> getRuntimeHandler()
    • getComponentType

      public static EJBComponentType getComponentType(ComponentConfiguration componentConfiguration)
    • pooledComponent

      protected PooledComponent<?> pooledComponent(EJBComponent component)