org.ehcache.xml.model.Heap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache-xml Show documentation
Show all versions of ehcache-xml Show documentation
The module containing all XML parsing logic Ehcache 3
package org.ehcache.xml.model;
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
@SuppressWarnings({
"unchecked",
"serial"
})
public class Heap
extends JAXBElement
{
protected final static QName NAME = new QName("http://www.ehcache.org/v3", "heap");
public Heap(ResourceTypeWithPropSubst value) {
super(NAME, ((Class) ResourceTypeWithPropSubst.class), null, value);
}
public Heap() {
super(NAME, ((Class) ResourceTypeWithPropSubst.class), null, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy