$CLASS_NAME
#if($HAS_MAPPINGS)
Use case - Flow - Action Mappings
#end
#if($TAGS && (!$TAGS.isEmpty()))
#foreach ($tagElem in $TAGS)
$tagElem.toHtml()
#end
#end
#if($IN_BEAN_NAME || $OUT_BEAN_NAME || $ERROR_BEAN_NAME)
Interface
#end
#if($IN_BEAN_NAME)
-
Input Bean:
$IN_BEAN_NAME
#foreach ($tagElem in $IN_BEAN_TAGS)
$tagElem.toHtml()
#end
Name |
Description |
Type |
Required |
#foreach ($attr in $IN_ATRIBUTOS)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$attr.toHtml()
#end
#end
#if($OUT_BEAN_NAME)
-
Output Bean:
$OUT_BEAN_NAME
#foreach ($tagElem in $OUT_BEAN_TAGS)
$tagElem.toHtml()
#end
Name |
Description |
Type |
Required |
#foreach ($attr in $OUT_ATRIBUTOS)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$attr.toHtml()
#end
#end
#if($ERROR_BEAN_NAME)
-
Fault Bean:
$ERROR_BEAN_NAME
#foreach ($tagElem in $ERROR_BEAN_TAGS)
$tagElem.toHtml()
#end
Name |
Description |
Type |
Required |
#foreach ($attr in $ERROR_ATRIBUTOS)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$attr.toHtml()
#end
#end
$VALIDACOES_HEADER
#if($VALIDACOES && (!$VALIDACOES.isEmpty()) )
Business Validations
Code |
Description |
#foreach ($validacao in $VALIDACOES)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$validacao.toHtml()
#end
#end
$VALIDACOES_FOOTER
#if($ACTIONS && (!$ACTIONS.isEmpty()) )
Name |
Description |
#foreach ($action in $ACTIONS)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$action.toHtml()
#end
#end
#if($MAPPINGS && (!$MAPPINGS.isEmpty()) )
Use Case |
Flow |
Action |
#foreach ($mapping in $MAPPINGS)
#if ($velocityCount%2==0)
#set ($trStyle="evenRow")
#else
#set ($trStyle="oddRow")
#end
$mapping.toHtml($trStyle)
#end
#end