org.jboss.resteasy.plugins.stats.SubresourceLocator Maven / Gradle / Ivy
The newest version!
package org.jboss.resteasy.plugins.stats;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.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;
}
}