Home > Articles > Software Development & Management > Object Technology

How to Find Business Objects

Finding objects is easy if you know how and where to look for them. How to look is simple; use object think to ask questions of domain experts. Where to look is straightforward, too; look for objects in the following four categories: people, places, things, and events. How to find business objects is discussed in this excerpt from Jill Nicola’s book, Streamlined Object Modeling, (Prentice Hall PTR, 2001 ISBN: 0130668397).
This is an excerpt from Chapter 2 of Streamlined Object Modeling by Nicola, Mayfield, and Abney.
This chapter is from the book

Object Selection

Finding objects is easy if you know how and where to look for them. How to look is simple; use object think to ask questions of domain experts. Where to look is straightforward, too; look for objects in the following four categories: people, places, things, and events.

People

People play a big part in nearly all domains. Information to capture about people includes details identifying individuals, the different contexts in which they can participate, their privileges and duties in those contexts, and records of their interactions. To model a person or an organization that can participate in the system, use an actor object. Model the participation and actions of the person or organization with separate objects.

A simple rule of object modeling is that every action by a person or an organization happens within a context. A context is a focused piece of the business domain that concentrates on the information and rules necessary to reach a single goal. Putting an action within a context helps ensure the action is only undertaken by those able to participate in that context, and that the action only involves other people, places, and things within that context.

Whenever a person or organization participates in a context, two things inevitably happen. First, the system endows the person or organization with permissions, IDs, and passwords necessary to distinguish and track that person or organization within that context. Second, the person or organization's participation acquires its own history, recording the events undertaken within that context. Objectify the obvious. For each context a person or organization participates in, create a role object that has the permissions, IDs, and passwords necessary to participate in the context, and that has associated to it the records of interactions within the context.

Example

In an e-commerce system, create separate role objects for each goal-based action: customer orders products; business buyer orders products for organization; supplier agent sells products; and system administrator creates and manages the accounts and other information in the system. Fred has two role objects: a customer role for his personal orders, and a business buyer role for his company orders. His personal billing and shipping information is held with his customer role, along with his personal orders. His company billing and shipping information, along with his company orders, are held with his business buyer role. Both roles are associated to the person object representing Fred; this common object allows Fred to get to both roles through a single login.

Places

Another simple rule of object modeling is that every recorded action by a person or organization happens in a given place. (An example of a non-recorded action is a search. While it generates results that may be modeled as objects, the search is typically discarded after the user logs out, so it is not permanent history stored with the user role.)

In a simple system where all actions occur at the same location, having an explicit place object maybe be redundant; however, adding it now simplifies expansion to a system with multiple locations later.

Example

A retail clothing store seeks to consolidate all its orders in one database, but wants to be able to distinguish those that were purchased online, from those that occurred in a physical store, from those that were catalog telephone orders. In the model, an order can occur in one of three places: physical store, online store, or telephone catalog store.

Places are often hierarchical for the following reasons: (1) a position for a localized place cannot be fully specified without putting it inside a larger place (an example of this is a gate at an airport; its position is within a particular terminal that is within a particular airport), and (2) recorded actions in localized places are rolled up into larger places for auditing or statistical comparison. The smallest place of interest is where recorded actions occur. A location that merely contains things, but is not a location for recorded actions, is not a place, but a container (see Section 2.2.6). To model a location where recorded actions occur, use a place object; to model a location that contains places, use an outer place object.

Example

In the retail clothing store example, each physical store is assigned to a geographical region overseen by a regional supervisor. The performance of each geographical region is determined by rolling up the orders placed at the physical stores within it.

Things

Every real-world action involves a subject that is the entity being acted upon. A tangible entity that can be the subject of an action is considered a thing. When people and places are the subjects of actions, they are acting like things. (Examples include selecting a particular individual as your insurance agent, or reserving a particular cabin at a ski lodge.)

To describe a real-world thing requires two objects. The first object provides a general, high-level description of the thing that is abstract enough to be shared with other similar things. In effect, this general description defines a set of related things. The second object is a specific description that extends the general description and distinguishes the thing from others in the set.

Decomposing a thing into general and specific descriptions resembles a data modeling technique called normalization; but this is not normalization because the goal of normalization is to avoid replicating data. Objects are more than just data; they have behaviors, too. Having one general description for many specific descriptions allows data sharing, but it also allows for behaviors within the general description that work across all the specific objects, for instance, rank them from best to worst.

To model the general description of a set of things, use an item object, which is a reusable description for many particular things. Use a specific item to model the properties that distinguish a particular thing from other things with the same item description.

Example

An automobile belongs to a set that is defined as all cars with a certain manufacturer, make, model, and production year, but it also has unique characteristics, such as its color, options, and vehicle identification number. Model the automobile with two objects: an automobile description containing the general characteristics, and an automobile object containing its unique characteristics. The automobile description object is reusable for all similar automobiles.

Aggregate Things

As with places, a thing can be tracked at different hierarchical levels of scale. Going up the scale, a thing can be placed within a container, classified within one or more groups, or fitted as a part into an assembly; going down the scale, a thing can act as a container, a group, or an assembly. It is quite common for a thing to exist at both levels; for example, a part in an assembly may itself be assembled out of smaller parts.

To model a thing that is a receptacle or storage place for other things, use a container object. Use a content object to represent a thing that is placed in a container. A content object can only be in at most one container at a given time, although its container may be a content object in another container.

Example

A television network sends its master videotapes to a videotape storage library. Each videotape is bar-coded and assigned a storage location. When the network recalls the videotape, and later returns it to the library, the videotape is again assigned a storage location that may or may not be the same as its previous location.

To categorize a collection of things, use a group object. A group is different from a container, because it denotes categorization, not physical containment. A group is also different from an item. Recall that an item acts a common description for all things in a set, whereas the things belonging to a group need not be related other than by their inclusion in the group. Use a member object to represent a thing that belongs to one or more groups.

Example

The television network has a classification scheme for its videotapes that includes categories such as news, sports, documentary, comedy, drama, children's, and talk show. A videotape is classified into one or more of the categories.

To model a thing constructed from other things, use an assembly object. Unlike a container and a group, an assembly cannot exist without its constituent parts. Use a part object to represent the component things that make up an assembly.

Example

A made-to-order computer workstation is assembled from components selected by online by a customer.

Events

An event is an interaction between people, places and things. Because they tie together the other three categories of objects, events are considered the historical glue in the object model. A simple event involves people interacting at a place with only one thing. Complex events involve multiple things and are discussed in the next section.

Example

A mechanic inspects an automobile on a given date and time, and records the results and success or failure of the inspection.

To model simple events involving only one thing, use a transaction object. Transactions are either point-in-time events that represent a momentary interaction, or they are time-interval events that occur over a long-term duration.

Example

Common point-in-time events are orders, purchases, returns, deposits, withdrawals, arrivals, departures, shipments, and deliveries. Common time-interval events are leases, rentals, job assignments, memberships, and itineraries.

To model a point-in-time event, use a transaction that knows about a single timestamp. For a time-interval event, use a transaction that knows about the starting and the ending timestamps.

Composite Events

Composite events involve people interacting at a place with one or more things. To distinguish and track each interaction with a single thing, a composite event contains smaller events, one for each thing. (Recall objects can play in many ways. People and places can act like things in a composite event. In those cases, they have their own smaller events within the composite event.)

The composite event is responsible for summary information and behaviors that work across all the interacting things.

To model a composite event, use a composite transaction. Use a line item to record the interaction details for a single thing within a composite transaction. A line item is a dependent event in that it cannot exist by itself; it exists only as part of the composite transaction.

Example

An e-commerce order is a composite transaction with a line item for each product included in the order. The line item for a single product contains the quantity ordered, shipping information, and gift wrap and gift message options.

Follow-Up Events

Often, an interaction between a given set of people, places, and things is followed by another interaction with some of the same people, places, and things. In general, simple events are followed by simple events, and composite events are followed by composite events.

Example

Common follow-up events are a delivery following a shipment, an arrival at one place following a departure at another, and a return at one store branch following a sale at a different store branch.

To model an event following another event, use a follow-up transaction object. Follow-up transactions are not the same as line items. A line item records details about a thing inside a composite event. A follow-up transaction describes another event at a later time.

Pattern Players

The 12 collaboration patterns are assembled from the vocabulary of objects discussed in the object selection principles. Because these objects play parts in one or more of the collaboration patterns, we call them pattern players. Table 1 lists the pattern players, loosely organized according to the people, place, thing, and event categories.

Table 1 The Pattern Players

People

Actor

Role

Places

Place

Outer Place

Things

Item

Specific Item

Assembly

Part

Container

Content

Group

Member

Events

Transaction

Composite Transaction

Line Item

Follow-up Transaction


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