name.remal.gradle_plugins.toolkit.cache.ToolkitCacheItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit Show documentation
Show all versions of toolkit Show documentation
Remal Gradle plugins: toolkit: toolkit
package name.remal.gradle_plugins.toolkit.cache;
import java.nio.file.attribute.FileTime;
import javax.annotation.Nullable;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.ToString;
@RequiredArgsConstructor
@Getter
@ToString(of = "lastModified")
public class ToolkitCacheItem {
@Nullable
private final FileTime lastModified;
private final T value;
}