java.lang.Object
nablarch.core.repository.di.config.xml.schema.Component

public class Component extends Object
コンポーネント定義を行う型。

Java class for Component complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Component">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="property" type="{http://tis.co.jp/nablarch/component-configuration}Property" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="autowireType" type="{http://tis.co.jp/nablarch/component-configuration}AutowireType" default="ByType" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • Component

      public Component()
  • Method Details

    • getProperty

      public List<Property> getProperty()
      Gets the value of the property property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the property property.

      For example, to add a new item, do as follows:

          getProperty().add(newItem);
       

      Objects of the following type(s) are allowed in the list Property

    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getClazz

      public String getClazz()
      Gets the value of the clazz property.
      Returns:
      possible object is String
    • setClazz

      public void setClazz(String value)
      Sets the value of the clazz property.
      Parameters:
      value - allowed object is String
    • getAutowireType

      public AutowireType getAutowireType()
      Gets the value of the autowireType property.
      Returns:
      possible object is AutowireType
    • setAutowireType

      public void setAutowireType(AutowireType value)
      Sets the value of the autowireType property.
      Parameters:
      value - allowed object is AutowireType