com.rollbar.notifier.uuid.UuidGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-java Show documentation
Show all versions of rollbar-java Show documentation
For connecting your applications built on the JVM to Rollbar for Error Reporting
The newest version!
package com.rollbar.notifier.uuid;
import com.rollbar.api.payload.data.Data;
/**
* Interface to generate the UUID of the {@link Data data} to send to Rollbar.
*/
public interface UuidGenerator {
/**
* Generates the UUID for the data.
*
* @param data the data.
* @return the UUID.
*/
String from(Data data);
}