Role Pattern

The RolePattern may already exist as a pattern under a different name. If so, it is just a case of IndependentDiscovery?. Feel free to purge this page from the Wiki.

Often, the interface you want to use for a class will depend on the context it is being used in within your system. The idea here is that the class is going to provide different contracts to different parts of the system based on what it is that they need. Some categories where it would be appropriate follow:

An example of the last category is the java.util.Properties class, which is a subclass of java.util.Hashtable. It has getProperty() and setProperty() which work with Strings, but because it is a subclass of Hashtable it exposes get() and put(), which work with objects. To ensure consistency and to keep the public API to a decent size, it makes sense to hide the get() and put() methods by providing the Properties class through an Interface that doesn't provide those methods.

From the point of view of using a class externally, this pattern is the reverse of the DecoratorPattern. Instead of extending the contract with the outside world by wrapping old functionaility in a class that adds new, you are creating a limited contract for certain clients that hides some of the functionality of a class behind an interface.

A common hack to try to implement the RolePattern without using a separate interface is to hide selected methods by making them protected or otherwise playing with the scope. In C++, for example, you might declare the Configurator as a friend. In Java, you might make the Unit Test a member of the same package and make the unit-test-specific methods package protected. But this mechanism is extremely limited, and loses the information concerning the different contracts you want to offer to different parts of the system.


Of course, there is nothing new under the sun. I have found a reference to a "principle" which is very similar to this pattern -- The InterfaceSegregationPrinciple.

http://www.objectmentor.com/resources/articles/isp.pdf

BruceAtherton


CompareWith? RoleObjectPattern

CategoryPattern


EditText of this page (last edited October 23, 2008) or FindPage with title or text search