Class NotifInput
java.lang.Object
flexagon.ff.common.core.pojos.BasePOJO
flexagon.fd.model2.notification.pojos.NotifInput
- All Implemented Interfaces:
Serializable
Represents a FlexDeploy workflow request Input. For use within Notification Templates.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotifInput(WorkflowRequestInputDataObject pWorkflowRequestInputDataObject, String pDisplayName, String pDescription, DataTypeEnum pDataTypeEnum) Create an instance of this object from the information stored in the database. -
Method Summary
Modifier and TypeMethodDescriptiongetCode()Returns the code of the Input.Returns the optional description of the Input.getId()Returns the internal identifier of the input.getName()Returns the display name of the Input.getType()Returns the datatype name of the Input.Returns an Enum representing the datatype of the Input.getValue()Returns the value of this Input.
-
Constructor Details
-
NotifInput
public NotifInput(WorkflowRequestInputDataObject pWorkflowRequestInputDataObject, String pDisplayName, String pDescription, DataTypeEnum pDataTypeEnum) Create an instance of this object from the information stored in the database.- Parameters:
pWorkflowRequestInputDataObject- The data from the database.pDisplayName- The display name from the metadata.pDataTypeEnum- The datatype from the metadata.
-
-
Method Details
-
getId
Returns the internal identifier of the input.- Returns:
- The internal identifier of the input.
-
getCode
Returns the code of the Input.- Returns:
- The code of the Input.
-
getName
Returns the display name of the Input.- Returns:
- The display name of the Input.
-
getDescription
Returns the optional description of the Input.- Returns:
- The description of the Input.
-
getTypeEnum
Returns an Enum representing the datatype of the Input.- Returns:
- An Enum representing the datatype of the Input.
-
getType
Returns the datatype name of the Input.- Returns:
- The datatype name of the Input.
-
getValue
Returns the value of this Input. Type will be a Java primitive wrapper according to its defined datatype (Boolean, Double, Float, Integer, Long, String).- Returns:
- The display name of the FlexField.
-