com.ibm.task.api
Interface CustomPropertyInfo
-
- All Superinterfaces:
- java.io.Serializable
public interface CustomPropertyInfo extends java.io.SerializableProvides information about a custom property.Custom properties allow a user to add additional properties to an object beyond those provided and managed by the Human Task Manager.
- Since:
- 6.1.2
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringCOPYRIGHT
-
Method Summary
Methods Modifier and Type Method and Description intgetAssociatedObjectType()Returns the object type of the object the custom property is set for.java.lang.StringgetName()Returns the name of the custom property.booleanisBinary()Indicates whether the custom property is a binary custom property or not.
-
-
-
Field Detail
-
COPYRIGHT
static final java.lang.String COPYRIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the custom property.- Returns:
- The name of the custom property.
-
getAssociatedObjectType
int getAssociatedObjectType()
Returns the object type of the object the custom property is set for.- Returns:
- The associated object type - refer to
ObjectType.
-
isBinary
boolean isBinary()
Indicates whether the custom property is a binary custom property or not.- Returns:
- True when the custom property is a binary custom property else false.
-
-