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

org.ligoj.bootstrap.resource.system.cache.CacheNode Maven / Gradle / Ivy

There is a newer version: 3.1.22
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.bootstrap.resource.system.cache;

import lombok.Getter;
import lombok.Setter;

/**
 * A cache node.
 */
@Getter
@Setter
public class CacheNode {

	/**
	 * Node identifier.
	 */
	private String id;

	/**
	 * Includes IP and port.
	 */
	private String address;

	/**
	 * Version of this node.
	 */
	private String version;
	
	private CacheCluster cluster;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy