Skip to content
Snippets Groups Projects

1.3.0: Implement Conversion type, JsonArraySerde and DLQ support in AbstractStream base class

Open Ignacio Coterillo Coz requested to merge jsonarrayserde into qa
Files
9
package ch.cern.nile.common.configuration.properties;
import lombok.Getter;
/**
* Enum representing properties specific to conversion clients.
*/
@Getter
public enum ConversionProperties implements PropertyEnum {
CLOCK_CHANNEL_NAME("clock.channel.name");
private final String value;
ConversionProperties(final String value) { this.value = value; }
}
Loading