All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.despegar.integration.mongo.id.StringIdGenerator Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package com.despegar.integration.mongo.id;

import org.apache.commons.lang.StringUtils;
import org.bson.types.ObjectId;

public class StringIdGenerator
    implements IdGenerator {

    public String generateId(String collectionName) {
        return new ObjectId().toString();
    }

    public Boolean validateId(Object id) {
        return id != null ? !StringUtils.isEmpty(id.toString()) : Boolean.FALSE;
    }

    public void updateId(String collectionName, Object id) {
        // nothing to do
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy