Roles and Activities > Designer > Use-Case Analysis

Purpose
  • To identify the classes which perform a use case’s flow of events.
  • To distribute the use case behavior to those classes, using use-case realizations.
  • To identify the responsibilities, attributes and associations of the classes.
  • To note the usage of architectural mechanisms
Steps
Input Artifacts:
  • Design Model
  • Glossary
  • Supplementary Specifications
  • Use-Case Model
  • Use-Case Realization
Resulting Artifacts:
  • Analysis Class
  • Use-Case Realization
Frequency: Once per iteration, for a set of Artifact: Use-Case Realizations
Role: Designer
Guidelines:
  • Analysis Class
  • Use-Case Realization

Workflow Details:
  • Analysis & Design
    • Define the Architecture

Supplement the Use-Case Descriptions To top of page

Purpose
  • To capture additional information needed in order to understand the required internal behavior of the system that may be missing from the use-case description written for the customer of the system.

The description of each use case is not always sufficient for finding analysis classes and their objects. The customer generally finds information about what happens inside the system uninteresting, so the use-case descriptions may leave such information out. In these cases, the use-case description reads like a ‘black-box’ description, in which internal details on what the system does in response to an actor’s actions is either missing or very summarily described. To find the objects which perform the use case, you need to have the ‘white box’ description of what the system does from an internal perspective.

Example

In the case of an Automated Teller Machine (ATM), the customer of the system may prefer to say

    "The ATM validates the Bank Customer’s card."

To describe the user authentication behavior of the system. While this may be sufficient for the customer, it gives us no real idea of what really happens inside the ATM to validate the card.

In order to form an internal picture of how the system really works, at a sufficient level of detail to identify objects, we may need additional information. Taking the ATM card validation activity as an example, the expanded description would read as:

    "The ATM sends the customer’s account number and the PIN to the ATM Network to be validated. The ATM Network returns success if the customer number and the PIN match and the customer is authorized to perform transactions, otherwise the ATM Network returns failure."

This level of detail gives us a clear idea of what information is required (account number and PIN) and who is responsible for the authentication (the ATM Network, an actor in the Use Case model). From this information, we can identify two potential objects (a Customer object, with attributes of account number and PIN, and an ATM Network Interface) as well as their responsibilities.

Examine the use-case description to see if the internal behavior of the system is clearly defined. The internal behavior of the system should be unambiguous, so that it is clear what the system must do. It is not necessary to define the elements within the system (objects) that are responsible for performing that behavior – just a clear definition of what needs to be done.

Sources of information for this detail include domain experts who can help define what the system needs to do. A good question to ask, when considering a particular behavior of the system, is "what does it mean for the system to do that thing?". If what the system does to perform the behavior is not well defined enough to answer that question, there is likely more information that needs to be uncovered.

The following alternatives exist for supplementing the description of the Flow of Events :

  • Do not describe it at all . This might be the case if you think the collaboration diagrams are self-explanatory, or if the Flow of Events of the corresponding use case provides a sufficient description.
  • Supplement the existing Flow of Event description . Add supplementary descriptions to the Flow of Events in areas where the existing text is unclear about the actions the system should take.
  • Describe it as a complete textual flow , separate from the "external" Use Case Flow of Events description. This is appropriate in cases where the internal behavior of the system bears little resemblance to the external behavior of the system. In this case, a completely separate description is warranted.

Find Analysis Classes from Use-Case Behavior To top of page

Purpose
  • To identify a candidate set of model elements (analysis classes) which will be capable of performing the behavior described in use cases.

Finding a candidate set of analysis classes is the first step in the transformation of the system from a mere statement of required behavior to a description of how the system will work. In this effort, analysis classes are used to represent the roles of model elements which provide the necessary behavior to fulfill the functional requirements specified by use cases and the non-functional requirements specified by the supplemental requirements. As the project's focus shifts to design, these roles evolve a set of design elements which realize the use cases.

The roles identified in Use-Case Analysis primarily express behavior of the upper-most layers of the system - application-specific behavior and domain specific behavior. Boundary classes and control classes typically evolve into application-layer design elements, while entity classes evolve into domain-specific design elements. Lower layer design element typically evolve from the analysis mechanisms which are used by the analysis classes identified here.

The technique described here uses three different perspectives of the system to drive the identification of candidate classes. The three perspectives are that of the boundary between the system and its actors, the information the system uses, and the control logic of the system. The corresponding class stereotypes, boundary, entity and control, are conveniences used during Analysis that disappear in Design.

Identification of classes means just that: they should be identified, named, and described briefly in a few sentences.

For more information on identification of analysis classes, see Guidelines: Analysis Class . For more information on use-case realizations, see Guidelines: Use-Case Realization .

Distribute Behavior to Analysis Classes To top of page

Purpose
  • To express the use-case behavior in terms of collaborating analysis classes.
  • To determine the responsibilities of analysis classes.
Guidelines: Use-Case Realizations

For each independent sub-flow (scenario):

  • Create one or more collaboration diagrams . At least one diagram is usually needed for the main flow of events of the use case, plus at least one diagram for each alternate/exceptional flow. Separate diagrams are usually needed for sub-flows which have complex timing or decision points, or to simplify complex flows which are too long to grasp easily in one diagram.
  • Identify the analysis classes responsible for the required behavior by stepping through the flow of events of the scenario, ensuring that all behavior required by the use case is provided by the use-case realization.
  • Illustrate interactions between analysis classes in the collaboration diagram. The collaboration diagram should also show interactions of the system with its actors (the collaborations should begin with an actor, since an actor always invokes the use case).
  • Include classes that represent the control classes of used use-cases. (Use a separate collaboration diagram for each extending use-case, showing only the variant behavior of the extending use case.)

an example collaboration diagram

A collaboration diagram for the use case Receive Deposit Item .

Describe Responsibilities To top of page

Purpose
  • To describe the responsibilities of a class of objects identified from use-case behavior.

A responsibility is a statement of something an object can be asked to provide. Responsibilities evolve into one (but usually more) operations on classes in design; they can be characterized as:

  • The actions that the object can perform.
  • The knowledge that the object maintains and provides to other objects.

Each analysis class should have several responsibilities; a class with only one responsibility is probably too simple, while one with a dozen or more is pushing the limit of reasonability and should potentially be split into several classes.

That all objects can be created and deleted goes without saying; don’t restate the obvious unless the object performs some special behavior when it is created or deleted. (Some objects cannot be removed if certain relationships exist.)

Finding Responsibilities

Responsibilities are derived from messages in collaboration diagrams. For each message, examine the class of the object to which the message is sent. If the responsibility does not yet exist, create a new responsibility that provides the requested behavior.

Other responsibilities will derive from non-functional requirements. When you create a new responsibility, check the non-functional requirements to see if there are related requirements which apply. Either augment the description of the responsibility, or create a new responsibility to reflect this.

Documenting Responsibilities

Responsibilities are documented with a short (up to several words) name for the responsibility, and a short (up to several sentences) description. The description states what the object does to fulfill the responsibility, and what result is returned when the responsibility is invoked.

Describe Attributes and Associations To top of page

Purpose
  • To define the other classes on which the analysis class depends
  • To define the events in other analysis classes that the class must know about
  • To define the information that the analysis class is responsible for maintaining

In order to carry-out their responsibilities, classes frequently depend on other classes to supply needed behavior. Associations document the inter-class relationships and help us to understand class coupling; better understanding of class coupling, and reduction of coupling where possible, can help us build better, more resilient systems.

The following steps define the attributes of classes and the associations between classes:

Define Attributes To top of page

Attributes are used to store information by a class. Specifically, attributes are used where the information is:

  • Referred to "by value"; that is, it is only the value of the information, not it's location or object identifier which is important.
  • Uniquely "owned" by the object to which it belongs; no other objects refer to the information.
  • Accessed by operations which only get, set or perform simple transformations on the information; the information has no "real" behavior other than providing its value.

If, on the other hand, the information has complex behavior, is shared by two or more objects, or is passed "by reference" between two or more objects, the information should be modeled as a separate class.

The attribute name should be a noun that clearly states what information the attribute holds.

The description of the attribute should describe what information is to be stored in the attribute; this can be optional when the information stored is obvious from the attribute name.

The attribute type is the simple data type of the attribute. Examples include string , integer , number .

Establish Associations between Analysis Classes To top of page

Start by studying the links in the collaboration diagrams produced in the above section, Distribute Behavior to Analysis Classes . Links between classes indicate that objects of the two classes need to communicate with one another to perform the Use Case. Once we start designing the system, these links may be realized in several ways:

  • The object may have "global" scope, in which case any object in the system can send messages to it
  • One object may be passed the second object as a parameter, after which it can send messages to the passed object
  • The object may have a permanent association to the object to which messages are sent.
  • The object may be created and destroyed within the scope of the operation (i.e. a 'temporary' object) - these objects are considered to be 'local' to the operation.

At this early point in the "life" of the class, however, it is too early to start making these decisions: we do not yet have enough information to make well-educated decisions. As a result, in analysis we create associations and aggregations to represent (and "carry") any messages that must be sent between objects of two classes. (Aggregation, a special form of association, indicates that the objects participate in a "whole/part" relationship.)

We will refine these associations and aggregations in the Activity: Class Design .

For each class, draw a class diagram which shows the associations each class has to other classes:

an example class diagram, showing associations and aggregations

Example analysis class diagram for part of an Order Entry System

Focus only on associations needed to realize the use cases; don't add association you think "might" exist unless they are required based on the collaboration diagrams.

Give the associations role names and multiplicities.

  • A role name should be a noun expressing what role the associated object plays in relation to the associating object.
  • Assume a multiplicity of 0..* (zero to many) unless there is some clear evidence of something else. A multiplicity of zero implies that the association is optional; make sure you mean this; if an object might not be there, operations which use the association will have to adjust accordingly.
  • Narrower limits for multiplicity may be specified (such as 3..8).
  • Within multiplicity ranges, probabilities may be specified. Thus, if the multiplicity is 0..*, is expected to be between 10 and 20 in 85% of the cases, make note of it; this information will be of great importance during design. For example, if persistent storage is to be implemented using a relational database, narrower limits will help better organize the database tables.

Write a brief description of the association to indicate how the association is used, or what relationships the association represents.

Describe Event Dependencies between Analysis Classes To top of page

Objects sometimes need to know when an event occurs in some "target" object, without the "target" having to know all the objects which require notification when the event occurs. As a short-hand to show this event-notification dependency, a subscribe-association allows us to express this dependency in a compact, concise way.

A subscribe-association between two objects indicates that the subscribing object will be informed when a particular event has occurred in the subscribed object. A subscribe-association has a condition defining the event that causes the subscriber to be notified.

The conditions of the subscribe-association should be expressed in terms of abstract characteristics, rather than in terms of its specific attributes or operations. In this way, the associating object is kept independent of the contents of the associated entity object, which may well change.

A subscribe-association is needed:

  • If an object is influenced by something that occurs in another object.
  • If a new object must be created to deal with some event, for example, when an error occurs, a new window must be created to notify the user.
  • If an object needs to know when another object is instantiated, changed or destroyed.

The objects which are 'subscribed-to' are typically entity objects. Entity objects are typically passive stores of information, with any behavior generally related to their information-storage responsibilities. Many other objects often need to know when the entity objects change. The subscribe-association prevents the entity object from having to know about all these other objects - they simply 'register' interest in the entity object and are notified when the entity object changes.

Now this is all really just 'analysis sleight-of-hand': in design we have to define how exactly this notification works. We may purchase a notification framework, or we may have to design and build one ourselves. But for the moment, simply noting that the notification exists is sufficient.

The direction of the association shows that only the subscribing object is aware of the relation between the two objects. The description of the subscription is entirely within the subscribing object. The associated entity object, in turn, is defined in the usual way without considering that other objects might be interested in its activity. This also implies that a subscribing object can be added to, or removed from, the model without changing the object to which it subscribes.

Qualify Analysis Mechanisms To top of page

Purpose
  • To identify analysis mechanisms (if any) used by the class.
  • To provide additional information about how the class applies the analysis mechanism.

If the analysis class uses one or more analysis mechanisms, additional information captured now will assist the designers to determine the capabilities required of the architectural design mechanisms. The number of instances of the analysis class, their size, their frequency of access, and their expected life-span are among the important properties that can assist the designers in selecting appropriate mechanisms.

For each analysis mechanism used by the analysis class, qualify the relevant characteristics which need to be considered when selecting appropriate design and implementation mechanisms. These will vary depending on the type of mechanism; give ranges where appropriate, or when there is still much uncertainty. Different architectural mechanisms will have different characteristics, so this information is purely descriptive and need only be as structured as necessary to capture and convey the information. During analysis, this information is generally quite speculative, but capturing has value since conjectural estimates can be revised as more information is uncovered.

The analysis mechanisms used by a class and their associated characteristic need not be captured in a formal way; a note attached to a diagram, or an extension to the description of the class is sufficient to convey the information. The characteristic information at this point in the evolution of the class is quite fluid and speculative, so the emphasis is on capturing expected values rather than on formalizing the definition of the mechanisms.

Example

The characteristics of the persistence mechanism used by a Flight class could be qualified as:

Granularity : 2 to 24 Kbytes per flight

Volume : Up to 100,000

Access frequency :

  • Creation/deletion: 100 per hour
  • Update: 3,000 updates per hour
  • Read: 9,000 access per hour

Example

The characteristics of the persistence mechanism used by a Mission class could be qualified as:

Granularity : 2 to 3 Mbytes per mission

Volume : 4

Access frequency :

  • Creation/deletion: 1 per day
  • Update: 10 per day
  • Read: 100 per hour

Evaluate the Results of Use-Case Analysis To top of page

Purpose
  • To verify that the analysis objects meet the functional requirements made on the system
  • To verify that the analysis objects and collaborations are consistent

Conduct a review informally at the end of the workshop, as a synchronization point, as well as the conclusion to the Activity: Use-Case Analysis .

See Checkpoints for Use Case Realizations and Checkpoints: Analysis Class .