/** {@inheritDoc} inits ProtocolBase Units. */
 @Override
 public void postInitHook(ProtocolBase protocol) {
   for (ProtocolAttachmentPersonnelBase attachment : this.attachmentPersonnels) {
     attachment.init(this);
   }
   for (ProtocolUnitBase unit : this.protocolUnits) {
     unit.init(this);
   }
 }