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

org.ehcache.xml.model.Offheap Maven / Gradle / Ivy

There is a newer version: 3.10.8
Show newest version

package org.ehcache.xml.model;

import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;

@SuppressWarnings({
    "unchecked",
    "serial"
})
public class Offheap
    extends JAXBElement
{

    protected final static QName NAME = new QName("http://www.ehcache.org/v3", "offheap");

    public Offheap(MemoryTypeWithPropSubst value) {
        super(NAME, ((Class) MemoryTypeWithPropSubst.class), null, value);
    }

    public Offheap() {
        super(NAME, ((Class) MemoryTypeWithPropSubst.class), null, null);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy