org.jboss.resteasy.plugins.stats.SubresourceLocator Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.stats;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
@XmlRootElement(name = "locator")
@XmlAccessorType(XmlAccessType.FIELD)
public class SubresourceLocator
{
@XmlAttribute(name = "class")
private String clazz;
@XmlAttribute
private String method;
public String getClazz()
{
return clazz;
}
public void setClazz(String clazz)
{
this.clazz = clazz;
}
public String getMethod()
{
return method;
}
public void setMethod(String method)
{
this.method = method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy