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

com.github.switcherapi.client.service.WorkerName Maven / Gradle / Ivy

package com.github.switcherapi.client.service;

public enum WorkerName {

    SNAPSHOT_WATCH_WORKER("switcherapi-snapshot-watcher"),
    SNAPSHOT_UPDATE_WORKER("switcherapi-snapshot-update");

    private final String name;

    WorkerName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy