Package org.otrs.ticketconnector
Class OTRSTicketSearchDynamicField
- java.lang.Object
-
- org.otrs.ticketconnector.OTRSTicketSearchDynamicField
-
- All Implemented Interfaces:
Serializable
public class OTRSTicketSearchDynamicField extends Object implements Serializable
Java class for OTRS_TicketSearch_DynamicField complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OTRS_TicketSearch_DynamicField"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="Equals" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Like" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="GreaterThan" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="GreaterThanEquals" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="SmallerThan" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="SmallerThanEquals" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </choice> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
equals
protected String
greaterThan
protected String
greaterThanEquals
protected String
like
protected String
smallerThan
protected String
smallerThanEquals
-
Constructor Summary
Constructors Constructor Description OTRSTicketSearchDynamicField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEquals()
Gets the value of the equals property.String
getGreaterThan()
Gets the value of the greaterThan property.String
getGreaterThanEquals()
Gets the value of the greaterThanEquals property.String
getLike()
Gets the value of the like property.String
getSmallerThan()
Gets the value of the smallerThan property.String
getSmallerThanEquals()
Gets the value of the smallerThanEquals property.void
setEquals(String value)
Sets the value of the equals property.void
setGreaterThan(String value)
Sets the value of the greaterThan property.void
setGreaterThanEquals(String value)
Sets the value of the greaterThanEquals property.void
setLike(String value)
Sets the value of the like property.void
setSmallerThan(String value)
Sets the value of the smallerThan property.void
setSmallerThanEquals(String value)
Sets the value of the smallerThanEquals property.
-
-
-
Method Detail
-
getEquals
public String getEquals()
Gets the value of the equals property.- Returns:
- possible object is
String
-
setEquals
public void setEquals(String value)
Sets the value of the equals property.- Parameters:
value
- allowed object isString
-
getLike
public String getLike()
Gets the value of the like property.- Returns:
- possible object is
String
-
setLike
public void setLike(String value)
Sets the value of the like property.- Parameters:
value
- allowed object isString
-
getGreaterThan
public String getGreaterThan()
Gets the value of the greaterThan property.- Returns:
- possible object is
String
-
setGreaterThan
public void setGreaterThan(String value)
Sets the value of the greaterThan property.- Parameters:
value
- allowed object isString
-
getGreaterThanEquals
public String getGreaterThanEquals()
Gets the value of the greaterThanEquals property.- Returns:
- possible object is
String
-
setGreaterThanEquals
public void setGreaterThanEquals(String value)
Sets the value of the greaterThanEquals property.- Parameters:
value
- allowed object isString
-
getSmallerThan
public String getSmallerThan()
Gets the value of the smallerThan property.- Returns:
- possible object is
String
-
setSmallerThan
public void setSmallerThan(String value)
Sets the value of the smallerThan property.- Parameters:
value
- allowed object isString
-
getSmallerThanEquals
public String getSmallerThanEquals()
Gets the value of the smallerThanEquals property.- Returns:
- possible object is
String
-
-