Description
The base classes in o.a.c.chain2.base are not thread safe. Since the JavaDoc of o.a.c.chain2.Command says that command implementations have to be thread safe, we should make sure that this is the case for the base implemenations we provide.
One possibility is to initialize all fields through the constructor.
Another solution is not to use fields, but to obtain required by the commands from the context.