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

com.breuninger.boot.jobs.service.UuidProvider Maven / Gradle / Ivy

There is a newer version: 2.0.5.RELEASE
Show newest version
package com.breuninger.boot.jobs.service;

import java.util.UUID;

import org.springframework.stereotype.Component;

@Component
public class UuidProvider {

  public String getUuid() {
    return UUID.randomUUID().toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy