/** Register fermat packet processors whit this communication channel */
  private void registerFermatPacketProcessors() {

    /*
     * Clean all
     */
    wsCommunicationsCloudClientChannel.cleanPacketProcessorsRegistered();

    /*
     * Register the packet processors
     */
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new ServerHandshakeRespondPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new CompleteRegistrationComponentPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new RequestListComponentRegisterPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new ComponentConnectionRespondPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new CompleteComponentConnectionRequestPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new FailureComponentConnectionRequestPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new FailureComponentRegistrationRequestPacketProcessor());
    wsCommunicationsCloudClientChannel.registerFermatPacketProcessor(
        new FailureRequestedListNoAvailblePacketProcessor());
  }