public void handleCompleteComponentConnectionRequestNotificationEvent(
      PlatformComponentProfile applicantComponentProfile,
      PlatformComponentProfile remoteComponentProfile) {

    communicationNetworkServiceConnectionManager.handleEstablishedRequestedNetworkServiceConnection(
        remoteComponentProfile);
  }
  /** Handles the events CompleteRequestListComponentRegisteredNotificationEvent */
  public void handleCompleteComponentConnectionRequestNotificationEvent(
      final PlatformComponentProfile remoteComponentProfile) {

    /*
     * Tell the manager to handler the new connection established
     */
    communicationNetworkServiceConnectionManager.handleEstablishedRequestedNetworkServiceConnection(
        remoteComponentProfile);

    if (remoteNetworkServicesRegisteredList != null
        && !remoteNetworkServicesRegisteredList.isEmpty())
      remoteNetworkServicesRegisteredList.add(remoteComponentProfile);
  }