Interface WebTemplateOutputType
-
public interface WebTemplateOutputType
Type definition
of 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.String
getArgumentType()
Obtains the fully qualifiedClass
name of the argument type for thisWebTemplateOutputType
.java.lang.String
getWebTemplateOutputName()
Obtains the name of thisWebTemplateOutputType
.boolean
isEscalationOnly()
Indicates if thisWebTemplateOutputType
is used only to handleManagedFunctionEscalationType
instances.
-
-
-
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
Class
name of the argument type for thisWebTemplateOutputType
.The name is returned rather than the actual
Class
to enable theWebTemplateType
to be obtained should theClass
not be available to theClassLoader
.- Returns:
- Fully qualified
Class
name of the argument type.
-
isEscalationOnly
boolean isEscalationOnly()
Indicates if this
WebTemplateOutputType
is used only to handleManagedFunctionEscalationType
instances.A
ManagedFunctionFlowType
must be connected to an input, however aManagedFunctionEscalationType
may be generically handled by theOffice
.- Returns:
true
if thisWebTemplateOutputType
isManagedFunctionEscalationType
instances only.
-
getAnnotations
java.lang.Object[] getAnnotations()
Obtains the annotations for theWebTemplateOutputType
.- Returns:
- Annotations for the
WebTemplateOutputType
.
-
-