Skip to content
Snippets Groups Projects

Fancy Borders Test

Closed Keane Reynolds requested to merge Keane_Branch into master
Files
70
/* Model of Application Process
Created by Mikhail Auguston in 2018.
Edited by Pamela Dyer in September, 2021.
Purpose: To provide a template for an application
approval process involving multiple levels of approval.
Description: An applicant submits application and needs
to get it approved by the bureaucratic chain of two
officials. If the first official approves, the application
is forwarded to the second official. The overall
application is approved only after it receives both
approvals. Each official can approve/reject the
application or request it be reworked and resubmitted.
Rework and resubmit events may be repeated several times.
Each rejection is final and cannot be followed by rework
and resubmit events. This model may be adapted for many
applications such as college application, permit
application, and work travel authorization.
See Example 38 in the MP manual for an example of how to
split this model into multiple models focusing on
different alternative branches.
References:
"Example 38: Application process model" from Auguston, M.
"Monterey Phoenix System and Software Architecture and
Workflow Modeling Language Manual" (Version 4). 2020.
Available online:
https://wiki.nps.edu/display/MP/Documentation
Search terms: behavior, application process; isomorphism
Instructions: Run for Scopes 1 and up.
Scope 1: 3 traces in less than 1 sec.
Scope 2: 9 traces in less than 1 sec.
Scope 3: 18 traces in less than 1 sec.
==========================================================*/
/*┬─────────────────────────────────────────────────────────────────────────────┐
│*│ ┌─[ Title and Authors ]───────────────────────────────────────────────────┐ │
│*│ │ Model of Application Process │ │
│*│ │ Created by Mikhail Auguston in 2018. │ │
│*│ │ Edited by Pamela Dyer in September, 2021. │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Purpose ]─────────────────────────────────────────────────────────────┐ │
│*│ │ To provide a template for an application approval process involving │ │
│*│ │ multiple levels of approval. │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Description ]─────────────────────────────────────────────────────────┐ │
│*│ │ An applicant submits application and needs to get it approved by the │ │
│*│ │ bureaucratic chain of two officials. If the first official approves, │ │
│*│ │ the application is forwarded to the second official. The overall │ │
│*│ │ application is approved only after it receives both approvals. Each │ │
│*│ │ official can approve/reject the application or request it be reworked │ │
│*│ │ and resubmitted. Rework and resubmit events may be repeated several │ │
│*│ │ times. Each rejection is final and cannot be followed by rework and │ │
│*│ │ resubmit events. This model may be adapted for many applications such │ │
│*│ │ as college application, permit application, and work travel │ │
│*│ │ authorization. │ │
│*│ │ │ │
│*│ │ See Example 38 in the MP manual for an example of how to split this │ │
│*│ │ model into multiple models focusing on different alternative branches. │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ References ]──────────────────────────────────────────────────────────┐ │
│*│ │ "Example 38: Application process model" from Auguston, M. "Monterey │ │
│*│ │ Phoenix System and Software Architecture and Workflow Modeling Language │ │
│*│ │ Manual" (Version 4). 2020. Available online: │ │
│*│ │ https://wiki.nps.edu/display/MP/Documentation │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Search Terms ]────────────────────────────────────────────────────────┐ │
│*│ │ behavior, application process; isomorphism │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Instructions ]────────────────────────────────────────────────────────┐ │
│*│ │ Run for Scopes 1 and up. │ │
│*│ ├─[ Run Statistics ]──────────────────────────────────────────────────────┤ │
│*│ │ Scope 1: 3 traces in less than 1 sec. │ │
│*│ │ Scope 2: 9 traces in less than 1 sec. │ │
│*│ │ Scope 3: 18 traces in less than 1 sec. │ │
│*│ └─────────────────────────────────────────────────────────────────────────┘ │
└*┴────────────────────────────────────────────────────────────────────────────*/
SCHEMA Application_Process
Loading