mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
109 lines
3.1 KiB
Java
109 lines
3.1 KiB
Java
import java.io.InputStream;
|
|
import java.io.IOException;
|
|
import java.lang.annotation.Annotation;
|
|
import java.lang.reflect.Type;
|
|
import javax.ws.rs.GET;
|
|
import javax.ws.rs.POST;
|
|
import javax.ws.rs.DELETE;
|
|
import javax.ws.rs.PUT;
|
|
import javax.ws.rs.OPTIONS;
|
|
import javax.ws.rs.HEAD;
|
|
import javax.ws.rs.Path;
|
|
import javax.ws.rs.BeanParam;
|
|
import javax.ws.rs.CookieParam;
|
|
import javax.ws.rs.FormParam;
|
|
import javax.ws.rs.HeaderParam;
|
|
import javax.ws.rs.MatrixParam;
|
|
import javax.ws.rs.PathParam;
|
|
import javax.ws.rs.Produces;
|
|
import javax.ws.rs.QueryParam;
|
|
import javax.ws.rs.client.Client;
|
|
import javax.ws.rs.core.Context;
|
|
import javax.ws.rs.core.MediaType;
|
|
import javax.ws.rs.core.MultivaluedMap;
|
|
import javax.ws.rs.core.Response;
|
|
import javax.ws.rs.ext.MessageBodyReader;
|
|
|
|
// By the JAX-RS spec, this is not a resource class because it doesn't
|
|
// have a @Path annotation. Inheritance of class or interface annotations
|
|
// is not supported in JAX-RS. However, this is a resource class for some
|
|
// implementations, like Apache CXF, that allow inheritance of JAX-RS
|
|
// annotations on classes and interfaces.
|
|
public class JaxRs4 implements JaxRsInterface { // $ RootResourceClass
|
|
public JaxRs4() { // $ InjectableConstructor
|
|
}
|
|
|
|
@Override
|
|
public int Get() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
return 1; // $ XssSink
|
|
}
|
|
|
|
@Override
|
|
public void Post() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
}
|
|
|
|
@Produces("application/json") // $ ProducesAnnotation=application/json
|
|
@Override
|
|
public double Delete() { // not a resource method because it has a jax-rs annotation, so it doesn't inherit any jax-rs annotations
|
|
return 1.0;
|
|
}
|
|
|
|
@Produces(MediaType.TEXT_HTML) // $ ProducesAnnotation=text/html
|
|
@Override
|
|
public void Put() { // not a resource method because it has a jax-rs annotation, so it doesn't inherit any jax-rs annotations
|
|
}
|
|
|
|
@Override
|
|
public void Options() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
}
|
|
|
|
@Override
|
|
public void Head() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
}
|
|
|
|
|
|
@Path("")
|
|
NonRootResourceClass subResourceLocator() {
|
|
return null;
|
|
}
|
|
|
|
public class NonRootResourceClass { // $ NonRootResourceClass
|
|
@GET
|
|
int Get() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
return 0; // $ XssSink
|
|
}
|
|
|
|
@Produces("text/html") // $ ProducesAnnotation=text/html
|
|
@POST
|
|
boolean Post() { // $ ResourceMethod=text/html ResourceMethodOnResourceClass
|
|
return false; // $ XssSink
|
|
}
|
|
|
|
@Produces(MediaType.TEXT_PLAIN) // $ ProducesAnnotation=text/plain
|
|
@DELETE
|
|
double Delete() { // $ ResourceMethod=text/plain ResourceMethodOnResourceClass
|
|
return 0.0;
|
|
}
|
|
|
|
@Path("")
|
|
AnotherNonRootResourceClass subResourceLocator1() { // $ SubResourceLocator
|
|
return null;
|
|
}
|
|
|
|
@GET
|
|
@Path("")
|
|
NotAResourceClass1 NotASubResourceLocator1() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
return null; // $ XssSink
|
|
}
|
|
|
|
@GET
|
|
NotAResourceClass2 NotASubResourceLocator2() { // $ ResourceMethod ResourceMethodOnResourceClass
|
|
return null; // $ XssSink
|
|
}
|
|
|
|
NotAResourceClass2 NotASubResourceLocator3() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|