package net.johnewart.gearman.server.config.persistence; public class RedisConfiguration { public String host; public int port; public String getHost() { return host; } public void setHost(String host) { this.host = host; } public int getPort() { return port; } public void setPort(int port) { this.port = port; } }