datahub.client.file.FileEmitterConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datahub-client Show documentation
Show all versions of datahub-client Show documentation
DataHub Java client for metadata integration
package datahub.client.file;
import datahub.event.EventFormatter;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class FileEmitterConfig {
@Builder.Default @lombok.NonNull private final String fileName = null;
@Builder.Default
private final EventFormatter eventFormatter =
new EventFormatter(EventFormatter.Format.PEGASUS_JSON);
}