@Override
    public Future<Boolean> insert(Location location) {
        //inserting the location in the Location database
        DocumentReference docRef = db.collection(LOCATIONCOLLECTION.toString()).document();
        Task<Void> task = docRef.set(location.getAllAttributes());