2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Servant
|
|
|
|
folder: servant
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/servant/
|
2019-12-13 21:09:28 +02:00
|
|
|
categories: Behavioral
|
2021-05-19 10:49:05 -06:00
|
|
|
language: en
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
2019-12-13 21:09:28 +02:00
|
|
|
- Decoupling
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Intent
|
|
|
|
Servant is used for providing some behavior to a group of classes.
|
2015-08-13 23:54:40 +02:00
|
|
|
Instead of defining that behavior in each class - or when we cannot factor out
|
|
|
|
this behavior in the common parent class - it is defined once in the Servant.
|
|
|
|
|
2019-12-07 20:01:13 +02:00
|
|
|
## Class diagram
|
2015-08-13 23:54:40 +02:00
|
|
|

|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Applicability
|
|
|
|
Use the Servant pattern when
|
2015-08-13 23:54:40 +02:00
|
|
|
|
2019-12-13 21:09:28 +02:00
|
|
|
* When we want some objects to perform a common action and don't want to define this action as a method in every class.
|
2016-01-27 12:55:59 +05:30
|
|
|
|
|
|
|
## Credits
|
2019-12-13 21:09:28 +02:00
|
|
|
|
2016-01-27 12:55:59 +05:30
|
|
|
* [Let's Modify the Objects-First Approach into Design-Patterns-First](http://edu.pecinovsky.cz/papers/2006_ITiCSE_Design_Patterns_First.pdf)
|