
Factory Production Assignment Relations
Explore the intricate relationships between factories, product types, and assignments in a dynamic production system where factories can change over time. Each product type is produced by a single factory, with flexible assignment structures ensuring efficient production processes.
Uploaded on | 1 Views
Download Presentation

Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.
E N D
Presentation Transcript
Each product type is produced by exactly one factory. Over time, the factory that produces a given product type can change.
0..* FACTORY PRODUCT TYPE 1..1 from Product Type to Factory: The specifications say that a product type is produced by exactly one factory. Therefore, the minimum cardinality and the maximum cardinality are both one. from Factory to Product Type: The specifications do not mention the minimum or the maximum amount of product types a factory can produce. The default is then 0..* because this amounts to not putting any kind of constraint.
0..* FACTORY PRODUCT TYPE 1..1 Since a factory can produce many product types, FACTORY is not existence dependent on PRODUCT TYPE. !!! Since the factory that produces a given product type can change over time, PRODUCT TYPE is not existence dependent on FACTORY.
FACTORY PRODUCT TYPE ASSIGNMENT Each factory has zero to many existence dependent assignment objects, namely one per product type it produces. Each product type has exactly one existence dependent assignment object, namely for the factory that currently produces it. The association Factory-ProductType has been instantiated to the class ASSIGNMENT. Note: the case description is not completely clear about every cardinality.