Interface FirebaseOrganizer.FacilityCheckCallback

Enclosing class:
FirebaseOrganizer

public static interface FirebaseOrganizer.FacilityCheckCallback
Callback interface for checking the existence of a facility.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onError(String message)
    Callback which contains an error message.
    void
    Callback which is called when a facility exists.
    void
    Callback which is called when a facility does not exist.
  • Method Details

    • onFacilityExists

      void onFacilityExists(String facilityId)
      Callback which is called when a facility exists.
      Parameters:
      facilityId - The ID of the existing facility.
    • onFacilityNotExists

      void onFacilityNotExists()
      Callback which is called when a facility does not exist.
    • onError

      void onError(String message)
      Callback which contains an error message.
      Parameters:
      message - Description of the error.