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

org.ligoj.bootstrap.resource.system.cache.CacheCluster 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 java.util.List;

import lombok.Getter;
import lombok.Setter;

/**
 * A cache cluster.
 */
@Getter
@Setter
public class CacheCluster {

	private String id;
	private String state;

	/**
	 * Cache cluster member. Not fully initialized to prevent recursive references.
	 */
	private List members;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy