Class TrackerFieldValueSoapDO
- java.lang.Object
-
- com.collabnet.ce.soap60.webservices.tracker.TrackerFieldValueSoapDO
-
public class TrackerFieldValueSoapDO extends Object
Data object that represents a possible value for a custom field.- Since:
- 4.2
-
-
Field Summary
Fields Modifier and Type Field Description static StringVALUE_CLASS_CLOSEDPossible value for the 'valueClass' field, indicating that a given field value represents a closed state.static StringVALUE_CLASS_OPENPossible value for the 'valueClass' field, indicating that a given field value represents an open state.
-
Constructor Summary
Constructors Constructor Description TrackerFieldValueSoapDO()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Returns 'id'.booleangetIsDefault()Returns 'isDefault'.StringgetValue()Returns 'value'.StringgetValueClass()Returns 'valueClass'.static voidregisterTypeMappings(org.apache.axis.client.Call call)voidsetId(String id)Sets 'id'.voidsetIsDefault(boolean isDefault)Sets 'isDefault'.voidsetValue(String value)Sets 'value'.voidsetValueClass(String valueClass)Sets 'valueClass'.
-
-
-
Field Detail
-
VALUE_CLASS_OPEN
public static final String VALUE_CLASS_OPEN
Possible value for the 'valueClass' field, indicating that a given field value represents an open state.- See Also:
- Constant Field Values
-
VALUE_CLASS_CLOSED
public static final String VALUE_CLASS_CLOSED
Possible value for the 'valueClass' field, indicating that a given field value represents a closed state.- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public String getId()
Returns 'id'.- Returns:
- Value of 'id'.
-
setId
public void setId(String id)
Sets 'id'.- Parameters:
id- Value of 'id'.
-
getValue
public String getValue()
Returns 'value'. The value of the field.- Returns:
- Value of 'value'.
-
setValue
public void setValue(String value)
Sets 'value'. The value of the field.- Parameters:
value- Value of 'value'.
-
getValueClass
public String getValueClass()
Returns 'valueClass'.- Returns:
- Value of 'valueClass'.
-
setValueClass
public void setValueClass(String valueClass)
Sets 'valueClass'.- Parameters:
valueClass- Value of 'valueClass'.
-
getIsDefault
public boolean getIsDefault()
Returns 'isDefault'.- Returns:
- Value of 'isDefault'.
-
setIsDefault
public void setIsDefault(boolean isDefault)
Sets 'isDefault'.- Parameters:
isDefault- Value of 'isDefault'.
-
registerTypeMappings
public static void registerTypeMappings(org.apache.axis.client.Call call)
-
-