io.quarkus.quartz.runtime.QuartzExtensionPointConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-quartz Show documentation
Show all versions of quarkus-quartz Show documentation
Schedule clustered tasks with Quartz
package io.quarkus.quartz.runtime;
import java.util.Map;
import io.quarkus.runtime.annotations.ConfigDocMapKey;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
@ConfigGroup
public class QuartzExtensionPointConfig {
/**
* Class name for the configuration.
*/
@ConfigItem(name = "class")
public String clazz;
/**
* The properties passed to the class.
*/
@ConfigItem
@ConfigDocMapKey("property-key")
public Map properties;
}