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

org.jboss.resteasy.plugins.stats.RegistryData Maven / Gradle / Ivy

The newest version!
package org.jboss.resteasy.plugins.stats;

import java.util.Set;
import java.util.TreeSet;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlRootElement;

/**
 * @author Bill Burke
 * @version $Revision: 2 $
 */
@XmlRootElement(name = "registry")
@XmlAccessorType(XmlAccessType.FIELD)
public class RegistryData {
    @XmlElementRef
    private Set entries = new TreeSet();

    public Set getEntries() {
        return entries;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy