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

com.transferwise.tasks.domain.IBaseTask Maven / Gradle / Ivy

There is a newer version: 1.43.0
Show newest version
package com.transferwise.tasks.domain;

import java.util.UUID;

public interface IBaseTask {

  UUID getId();

  long getVersion();

  ITaskVersionId getVersionId();

  @SuppressWarnings("EmptyMethod")
  String getType();

  int getPriority();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy