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

org.jboss.resteasy.spi.metadata.ResourceConstructor Maven / Gradle / Ivy

The newest version!
package org.jboss.resteasy.spi.metadata;

import java.lang.reflect.Constructor;

/**
 * @author Christian Kaltepoth
 */
public interface ResourceConstructor
{
  ResourceClass getResourceClass();

  Constructor getConstructor();

  ConstructorParameter[] getParams();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy