com.github.euler.configuration.AbstractBatchBarrierConditionConfigConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of euler-config Show documentation
Show all versions of euler-config Show documentation
Euler - File Processing API - Config module.
package com.github.euler.configuration;
import com.github.euler.core.BatchBarrierCondition;
public abstract class AbstractBatchBarrierConditionConfigConverter implements TypeConfigConverter {
public static final String CONDITION = "batch-condition";
@Override
public String type() {
return CONDITION;
}
}