Designing case specialization and extensibility
3 Tasks
20 mins
Scenario
A single application currently handles Front Stage’s event booking needs. Front Stage intends to pursue additional venues in the future. Front Stage is concerned that each additional entertainment venue might potentially require modifications to the company's current application.
- Analyze the key requirements to determine if the current single application design supports these requirements.
- Prepare a list of questions that can be presented to the Front Page executives asking for clarification.
- Recommend the most appropriate enterprise class structure for the application going forward.
Detailed Tasks
1 Identify design options
The key requirement is implementing business logic specific to an entertainment venue when the need arises. There is no requirement that states different database tables must store each venue’s data.
There are three possible approaches for this solution:
- Represent the differences between venues as data. Implement rules that can process this data.
- Implement venue specialization within the current application.
- Use the current application as a framework/model/template/blueprint. Create an implementation application for each venue.
2 Evaluate design options
Data-driven rules
In this approach, an attempt is made to model the differences between venues as either data instances or custom non-Pega rules that are treated as data. Rules are developed with the ability to react to this data regardless of the venue.
Pros | Cons |
---|---|
|
|
Single application rule specialization
The single application approach satisfies the current routing requirements leveraging the org structure. If only a few differences are anticipated between venues, circumstancing can suffice. For more complex differences, you can use pattern inheritance and utilize venue-specific classes that have been defined. Then, you can use Dynamic Class Reference (DCR) to decide which class to create.
Pros | Cons |
---|---|
|
|
Application per venue
The multiple application approach also satisfies the current routing requirements that leverage the org structure. An application is created for each venue. Case types within each venue-specific application extend a case type class within the current application. Venue-specific business logic differences are handled by saving the rule from the current application to the corresponding case type class in with the venue-specific application. Users must switch applications to create and manage cases for different venues.
Pros | Cons |
---|---|
|
|
3 Recommend the best design option
The single application approach is recommended because it:
- Satisfies the requirement
- Does not require application-switching
- Simplifies reporting
- Supports a large number of venues when required
Available in the following mission:
Want to help us improve this content?