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

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

There is a newer version: 4.0.0.Beta5
Show 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