Interface WebTemplateOutputType
-
public interface WebTemplateOutputTypeType definitionof an output for aWebTemplateType.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]getAnnotations()Obtains the annotations for theWebTemplateOutputType.java.lang.StringgetArgumentType()Obtains the fully qualifiedClassname of the argument type for thisWebTemplateOutputType.java.lang.StringgetWebTemplateOutputName()Obtains the name of thisWebTemplateOutputType.booleanisEscalationOnly()Indicates if thisWebTemplateOutputTypeis used only to handleManagedFunctionEscalationTypeinstances.
-
-
-
Method Detail
-
getWebTemplateOutputName
java.lang.String getWebTemplateOutputName()
Obtains the name of thisWebTemplateOutputType.- Returns:
- Name of this
WebTemplateOutputType.
-
getArgumentType
java.lang.String getArgumentType()
Obtains the fully qualified
Classname of the argument type for thisWebTemplateOutputType.The name is returned rather than the actual
Classto enable theWebTemplateTypeto be obtained should theClassnot be available to theClassLoader.- Returns:
- Fully qualified
Classname of the argument type.
-
isEscalationOnly
boolean isEscalationOnly()
Indicates if this
WebTemplateOutputTypeis used only to handleManagedFunctionEscalationTypeinstances.A
ManagedFunctionFlowTypemust be connected to an input, however aManagedFunctionEscalationTypemay be generically handled by theOffice.- Returns:
trueif thisWebTemplateOutputTypeisManagedFunctionEscalationTypeinstances only.
-
getAnnotations
java.lang.Object[] getAnnotations()
Obtains the annotations for theWebTemplateOutputType.- Returns:
- Annotations for the
WebTemplateOutputType.
-
-