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

com.redislabs.picocliredis.BaseOptions Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.redislabs.picocliredis;

import lombok.Data;
import picocli.CommandLine.Option;

public @Data class BaseOptions {

	@Option(names = { "-v", "--verbose" }, description = "Enable verbose logging", order = 2)
	private boolean verbose;
	@Option(names = { "-d", "--debug" }, description = "Enable debug logging", order = 3)
	private boolean debug;
	@Option(names = { "-q", "--quiet" }, description = "Disable all logging", order = 1)
	private boolean quiet;
	@Option(names = "--dns-ttl", description = "DNS cache TTL", paramLabel = "", order = 4)
	private int dnsTtl;
	@Option(names = "--dns-neg-ttl", description = "DNS cache negative TTL", paramLabel = "", order = 4)
	private int dnsNegativeTtl;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy