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

org.wildfly.swarm.config.undertow.BufferCache Maven / Gradle / Ivy

package org.wildfly.swarm.config.undertow;

import org.wildfly.config.runtime.Implicit;
import org.wildfly.config.runtime.ResourceType;
import org.wildfly.config.runtime.ModelNodeBinding;
/**
 * The buffer cache used to cache static content
 */
@ResourceType("buffer-cache")
public class BufferCache {

	private String key;
	private Integer bufferSize;
	private Integer buffersPerRegion;
	private Integer maxRegions;

	public BufferCache(String key) {
		this.key = key;
	}

	public String getKey() {
		return this.key;
	}

	/**
	 * The size of an individual buffer
	 */
	@ModelNodeBinding(detypedName = "buffer-size")
	public Integer bufferSize() {
		return this.bufferSize;
	}

	/**
	 * The size of an individual buffer
	 */
	@SuppressWarnings("unchecked")
	public BufferCache bufferSize(Integer value) {
		this.bufferSize = value;
		return (BufferCache) this;
	}

	/**
	 * The numbers of buffers in a region
	 */
	@ModelNodeBinding(detypedName = "buffers-per-region")
	public Integer buffersPerRegion() {
		return this.buffersPerRegion;
	}

	/**
	 * The numbers of buffers in a region
	 */
	@SuppressWarnings("unchecked")
	public BufferCache buffersPerRegion(Integer value) {
		this.buffersPerRegion = value;
		return (BufferCache) this;
	}

	/**
	 * The maximum number of regions
	 */
	@ModelNodeBinding(detypedName = "max-regions")
	public Integer maxRegions() {
		return this.maxRegions;
	}

	/**
	 * The maximum number of regions
	 */
	@SuppressWarnings("unchecked")
	public BufferCache maxRegions(Integer value) {
		this.maxRegions = value;
		return (BufferCache) this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy