Figure SO.25 - The Concept of a ServicePackage : Class diagram
Created:
3/28/2022 3:51:09 PM
Modified:
11/17/2023 6:29:36 AM
Project:
Author:
Giu Platania
Version:
1.0.0
Advanced:
ID:
{979800FF-C6A3-47f6-B904-DFC5CA48DFB8}
A ServicePackageSpec defines the concept of bundling a set of different CustomerFacingServiceSpecs to meet the functionality specified by one or more ProductSpecifications. This enables the common characteristics of these CustomerFacingServices to be specified, so that multiple Products can be built from their associated ProductSpecification.<br/>Treating this set of CustomerFacingServiceSpecs as a single object is very important for building complex Services, such as a VPN. This enables a single Product to be offered to the Customer (or another type of PartyRole), even though in reality the Product consists of a set of different CustomerFacingServices that must work together to provide the functionality that the Customer needs.<br/>The composite pattern is used to make the ServicePackageSpec object extensible. A ServicePackageSpecAtomic object models different ServicePackageSpecs as a set of different instances of individual, independent CustomerFacingServiceSpecs. This is fundamentally different than the ServicePackageSpecComposite object, which is used to model one ServicePackageSpec as the combination of other existing ServicePackageSpecs (as well as providing its own extensions).<br/>