Package org.otrs.ticketconnector
Class OTRSDynamicField
- java.lang.Object
-
- org.otrs.ticketconnector.OTRSDynamicField
-
- All Implemented Interfaces:
java.io.Serializable
public class OTRSDynamicField extends java.lang.Object implements java.io.Serializable<p>Java class for OTRS_DynamicField complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="OTRS_DynamicField"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OTRSDynamicField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Gets the value of the name property.java.lang.String[]getValue()java.lang.StringgetValue(int idx)intgetValueLength()voidsetName(java.lang.String value)Sets the value of the name property.java.lang.StringsetValue(int idx, java.lang.String value)voidsetValue(java.lang.String[] values)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getValue
public java.lang.String[] getValue()
- Returns:
- array of
String
-
getValue
public java.lang.String getValue(int idx)
- Returns:
- one of
String
-
getValueLength
public int getValueLength()
-
setValue
public void setValue(java.lang.String[] values)
- Parameters:
values- allowed objects areString
-
setValue
public java.lang.String setValue(int idx, java.lang.String value)- Parameters:
value- allowed object isString
-
-