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

org.molgenis.data.meta.AbstractMetadataIdGenerator Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data.meta;

import static java.nio.charset.StandardCharsets.UTF_8;

import com.google.common.hash.Hashing;

public abstract class AbstractMetadataIdGenerator implements MetadataIdGenerator {
  /**
   * Generates a eight character [a-z0-9] system unique identifier.
   *
   * @param id identifier of variable length
   * @return hashcode
   */
  protected String generateHashcode(Object id) {
    return Hashing.crc32().hashString(id.toString(), UTF_8).toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy