public boolean addTextEventReceiverConfiguration(
     String eventReceiverName,
     String streamNameWithVersion,
     String eventAdapterType,
     EventMappingPropertyDto[] inputMappings,
     BasicInputAdapterPropertyDto[] inputPropertyConfiguration,
     boolean mappingEnabled)
     throws RemoteException {
   try {
     return eventReceiverAdminServiceStub.deployTextEventReceiverConfiguration(
         eventReceiverName,
         streamNameWithVersion,
         eventAdapterType,
         inputMappings,
         inputPropertyConfiguration,
         mappingEnabled);
   } catch (RemoteException e) {
     log.error("RemoteException", e);
     throw new RemoteException();
   }
 }