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

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

There is a newer version: 7.0.0.Alpha4
Show newest version
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