![JAR search and dependency download from the Maven repository](/logo.png)
com.nextbreakpoint.flink.dummies.SampledTemperature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.nextbreakpoint.flink.dummies Show documentation
Show all versions of com.nextbreakpoint.flink.dummies Show documentation
Collection of dummy jobs for Apache Flink
The newest version!
/*
* This file is part of Flink Dummies
* https://github.com/nextbreakpoint/flink-dummies
*/
package com.nextbreakpoint.flink.dummies;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import java.time.Instant;
@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public class SampledTemperature {
private @NonNull String measureId;
private @NonNull String sensorId;
private @NonNull String locationId;
private @NonNull Integer value;
private @NonNull Instant timestamp;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy