Home > Articles > Software Development & Management > Architecture and Design

This chapter is from the book

Example: Sales Order Service

We will use the example of a Sales Order Service supporting an Order-to-Delivery business process to illustrate the various facets of observable dependencies and behaviors. An overview of the Order-to-Delivery business process is depicted in Figure 5-1. This figure presents a usage scenario for the Sales Order Service, which is one of the participants in the process. The Sales Order Service manages the full life cycle of an order. Let’s examine how it participates in the process and note the relevant observable facets that come into play.

Figure 5-1

Figure 5-1: Sales Order Service in the Order-to-Delivery Business Process

Placing the Order

The Sales Order Service accepts an order from the Web Site via the placeOrder() operation of the Sales Order Service Interface (Figure 5-2). The invocation of this operation constitutes a trigger, and the fact that it is invoked by the Web Site indicates a dependency on the interface.

Figure 5-2

Figure 5-2: Sales Order Service Interface—placeOrder() Operation

The invocation of the placeOrder() operation triggers an associated behavior of the service. This behavior validates the order and obtains payment, in the process deciding whether or not to accept the order. These activities involve interactions with other components, components that are not part of the service and are thus dependencies. Let’s look at the interfaces involved, and later we’ll identify the components that provide those interfaces.

The validity of each itemID is established by calling the validate-ProductID() operation of the Product Query Interface (Figure 5-3).

Figure 5-3

Figure 5-3: Product Query Interface—validateProductID() Operation

The validity of the customerID is established by calling the get-Customer() operation of the Customer Query Interface (Figure 5-4).

Figure 5-4

Figure 5-4: Customer Query Interface—getCustomer() Operation

Payment is obtained by calling the obtainPayment() operation on the Credit Interface (Figure 5-5).

Figure 5-5

Figure 5-5: Credit Interface—obtainPayment() Operation

At this point the service returns the Place Order Response to the waiting caller of placeOrder(). This data structure indicates whether the order was accepted and, if not accepted, the reason why. The data structure exposes the fact that the service is validating the order and obtaining payment, thus making this portion of the behavior observable to the caller of placeOrder().

The observable behavior does not end with the return of the Place Order Response data structure. If the order is accepted, the service then sends the order to Order Fulfillment using the fillOrder() operation of the Order Fulfillment Interface to accomplish this (Figure 5-6). This is yet another dependency. Note that, as designed, this is an In-Only operation and does not return a response.

Figure 5-6

Figure 5-6: Order Fulfillment Interface—fillOrder() Operation

At this point the behavior that began with the invocation of the placeOrder() operation comes to a conclusion. Putting all the pieces together, the behavior triggered by this invocation is that shown in Figure 5-7. This diagram also indicates components for which there are observable dependencies: Product Service, Customer Service, Credit Service, and Order Fulfillment Service.

Figure 5-7

Figure 5-7: Triggered Behavior for placeOrder()

Order Shipped

When Order Fulfillment ships the items, it sends a copy of the shipment notice to the Sales Order Service. It does this by calling the orderShipped() operation of the Sales Order Status Interface (Figure 5-8). This is another dependency: Order Fulfillment depends on this interface. As designed, this is an In-Only operation.

Figure 5-8

Figure 5-8: Sales Order Status Interface—orderShipped() Operation

The triggered behavior related to this interaction, the update of order status, is simple, although somewhat obscure from an observability perspective (Figure 5-9). The obscurity arises because the update of the order status cannot be inferred from this interaction alone. It is only the fact that the order status can be retrieved (via other operations), coupled with the fact that this status indicates whether or not the order has shipped, that reveals the fact that the order status exists and has been changed. We have identified an element of observable state.

Figure 5-9

Figure 5-9: orderShipped() Triggered Behavior

Order Delivered

When the Carrier reports that the shipment has been delivered, Order Fulfillment forwards the delivery notice to the Sales Order Service by calling the orderDelivered() operation of the Sales Order Status Interface (Figure 5-10). This is another dependency. Note that this is an In-Only operation and does not return a response.

Figure 5-10

Figure 5-10: Sales Order Status Interface—orderDelivered() Operation

Figure 5-11 shows the triggered behavior resulting from the invocation of the orderDelivered() operation. Once again, the existence of the order status update activity is inferred from information visible through other interface operations.

Figure 5-11

Figure 5-11: orderDelivered() Triggered Behavior

Observable State Information

Some component operations can reveal that information has been retained within a component. Consider the getOrder() operation of the Sales Order Service Interface shown in Figure 5-12. It returns information about the sales order and its line items. In order for the component to be able to return this information, it must retain it as part of its state. This makes that portion of the state observable.

Figure 5-12

Figure 5-12: Sales Order Service Interface—getOrder() Operation

There are two types of information typically observable through such interfaces: operational information and milestone-level status.

Operational Information

Figure 5-13 shows, at a conceptual level, the operational information involved in the ordering and shipping of goods. It also indicates which components are responsible for managing individual information elements. The Sales Order Service manages operational information related to the sales order, including the Sales Order, the Sales Order Line Items, the billing information, and the shipping and billing addresses. The service is stateful since it retains this information. The fact that the service makes this information (and changes to it) visible at its interfaces makes this state information observable.

Figure 5-13

Figure 5-13: Operational Information in the Order-to-Delivery Process

When a component retains stateful information, component users need to know the relationship between the interface operations and this stateful information in order to use the operations correctly. Users need to know which operations modify and reveal the state, and the details about which portions of the state are modified or revealed.

Milestone Status

There is another kind of information often visible through service interfaces: milestone-level status. This is usually an abstracted summary of the overall solution state, which includes state information originating outside the component.

For example, the status attribute of the sales order takes on one of a number of values depending upon the overall status of the order (Figure 5-14). Much of the state information being summarized resides outside the scope of the Sales Order Service. Thus, there must be interfaces (and systems implementing or invoking those interfaces) that provide the detailed state information needed to update this summary state information. In this case, these are the orderShipped() and orderDelivered() operations of the Sales Order Status Interface that are invoked by the Order Fulfillment Service.

Figure 5-14

Figure 5-14:Order Milestone Status

Observable State and Cached Information

The Sales Order Service makes use of some state information that it does not directly manage (own): customer information, product information, and information about the related shipments. Other services (components) are the systems of record for this information, but at least some of this information is cached in the Sales Order Service. This situation can raise some interesting design challenges, challenges that when resolved, can impact the observable behavior of the Sales Order Service.

A core design challenge is deciding how to maintain consistency between the cached information as viewed through the Sales Order Service and the same information viewed through its actual system of record. If it is possible (and it almost always is) for inconsistencies to arise, then the component’s observable behaviors must indicate the scenarios under which this can arise. Users need to be aware that such inconsistencies are possible and the circumstances under which they can arise.

Let’s take a look at how such a situation can arise in the Sales Order Service. If the other systems of record have separate data stores (e.g., databases), then it must be the case that the Sales Order Service retains copies of at least some of the information in its physical data store (Figure 5-15). Since this information is a copy, inconsistencies will arise if the system of record is updated but the copy is not. The more information that is copied, the more likely it is that a discrepancy will arise and be observed.

Figure 5-15

Figure 5-15: Sales Order Service Data Store

Maintaining the accuracy of cached information requires interactions with the information’s system of record. One common approach is for the system of record to provide facilities to inform interested parties of changes to its information. The system of record provides an interface for interested parties to subscribe to such notifications, and a second interface to actually notify the parties of changes. This approach is often taken when it is likely that more than one party will be interested in the changes. Note that the uses of these interfaces constitute additional observable dependencies.

In the present design, the Sales Order Service has two relationships of this type, one for product information and the other for customer information. Figure 5-16 shows the interfaces provided by the Product Service for this purpose. The Sales Order Service is a user of these interfaces.

Figure 5-16

Figure 5-16: Product Change Notification Context

Two interesting questions arise with respect to the subscription interface. The first of these relates to the granularity of the subscription: Does the interested party subscribe to changes to particular products, or to all products? The second relates to the timing of the subscription: When does subscription occur? When the component is deployed? When it is started? Does it occur at some other time?

In practice, subscriptions are often realized without implementing subscription interfaces at all. Instead, the design uses a messaging service (e.g., JMS) for the delivery of notifications. The granularity issue is addressed through the choice of the number of destinations (topics or queues) in the design and the determination of which notifications will be sent to which destinations. Subscriptions are implemented through deployment-time configuration of components as listeners to specific destinations.

The productChange() operation raises another interesting situation from the Sales Order Service’s perspective: its invocation triggers activity in the service that is not related to an operation being provided by the Sales Order Service itself (Figure 5-17). It is the arrival of the notification that triggers the service’s activity. This is commonly referred to as an event-driven interaction. As shown, the process depicted in the diagram does not indicate what action should be taken as a result of this notification. However, if the final resolution requires either a change to the observable state of the service (e.g., replacing the item with another item) or an interaction with an external component (such as sending an e-mail notification), these actions constitute changes to the observable behavior that must be documented.

Figure 5-17

Figure 5-17: Product Change Notification Process

Avoiding Caches: Nested Retrieval

An approach to minimizing inconsistencies is to minimize the amount of cached information in a component. For example, instead of caching a lot of data, the component might only cache an identifier. Then, when the service needs more information about the identified entity, it retrieves it dynamically from the system of record for that entity.

The placeOrder() operation described earlier contains two interactions of this type. First, it interacts with the Product Service to validate the productID in the order request. Second, it interacts with the Customer Service for two reasons: to validate the customerID, and to retrieve the customerName, which is a required field for the Fill Order Request (Figure 5-6) data structure used in the fillOrder() invocation. Note that only the identifiers for these two entities are retained as part of the Sales Order Service’s state.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020