All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.robe.quartz.configuration.jobstore.JobStoreConfiguration Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.quartz.configuration.jobstore;

import java.util.Properties;

public class JobStoreConfiguration {
    private String className;

    private Properties properties;

    public String getClassName() {
        return className;
    }

    public void setClassName(String className) {
        this.className = className;
    }

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy