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

com.univapay.sdk.models.common.IdempotencyKey Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.univapay.sdk.models.common;

import java.util.UUID;

public class IdempotencyKey {
  private String key = null;

  public IdempotencyKey(String key) {
    this.key = key;
  }

  public IdempotencyKey(UUID uuid) {
    this.key = uuid.toString();
  }

  public String getKey() {
    return key;
  }

  public static IdempotencyKey randomFromUUID() {
    return new IdempotencyKey(UUID.randomUUID().toString());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy