def __init__(self, collection = None):

        databaseHandler = MongoDatabaseHandler()

        if collection is None:
            self.collection = databaseHandler.get_shortURL_collection()
        else:
            self.collection = collection