Class ComponentDescriptor
- java.lang.Object
-
- com.ibm.di.model.descriptor.BaseDescriptor
-
- com.ibm.di.model.descriptor.ComponentDescriptor
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ConnectorDescriptor
,FunctionComponentDescriptor
,ParserDescriptor
public abstract class ComponentDescriptor extends BaseDescriptor
Java class for ComponentDescriptor complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ComponentDescriptor"> <complexContent> <extension base="{http://www.ibm.com/xmlns/prod/tdi/71/core}BaseDescriptor"> <sequence> <element name="javaClass" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="name" type="{http://www.ibm.com/xmlns/prod/tdi/71/core}Label" maxOccurs="unbounded" minOccurs="0"/> <element name="description" type="{http://www.ibm.com/xmlns/prod/tdi/71/core}Label" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Label>
description
protected java.lang.String
id
protected java.lang.String
javaClass
protected java.util.List<Label>
name
protected java.lang.String
version
-
Fields inherited from class com.ibm.di.model.descriptor.BaseDescriptor
parameterMapDescriptor
-
-
Constructor Summary
Constructors Constructor Description ComponentDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Label>
getDescription()
Gets the value of the description property.java.lang.String
getId()
Gets the value of the id property.java.lang.String
getJavaClass()
Gets the value of the javaClass property.java.util.List<Label>
getName()
Gets the value of the name property.java.lang.String
getVersion()
Gets the value of the version property.void
setId(java.lang.String value)
Sets the value of the id property.void
setJavaClass(java.lang.String value)
Sets the value of the javaClass property.void
setVersion(java.lang.String value)
Sets the value of the version property.-
Methods inherited from class com.ibm.di.model.descriptor.BaseDescriptor
getParameterMapDescriptor
-
-
-
-
Method Detail
-
getJavaClass
public java.lang.String getJavaClass()
Gets the value of the javaClass property.- Returns:
- possible object is
String
-
setJavaClass
public void setJavaClass(java.lang.String value)
Sets the value of the javaClass property.- Parameters:
value
- allowed object isString
-
getName
public java.util.List<Label> getName()
Gets the value of the name 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 name property.For example, to add a new item, do as follows:
getName().add(newItem);
Objects of the following type(s) are allowed in the list
Label
-
getDescription
public java.util.List<Label> getDescription()
Gets the value of the description 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 description property.For example, to add a new item, do as follows:
getDescription().add(newItem);
Objects of the following type(s) are allowed in the list
Label
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
getVersion
public java.lang.String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
setVersion
public void setVersion(java.lang.String value)
Sets the value of the version property.- Parameters:
value
- allowed object isString
-
-