package org.jboss.resteasy.test.resource.param.resource; import org.jboss.resteasy.test.resource.param.QueryParamAsPrimitiveTest; import org.junit.Assert; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.QueryParam; @Path("/array/default/null") public class QueryParamAsPrimitiveResourceArrayDefaultNull { @GET @Produces("application/boolean") public String doGetBoolean(@QueryParam("boolean") boolean[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/byte") public String doGetByte(@QueryParam("byte") byte[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/short") public String doGetShort(@QueryParam("short") short[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/int") public String doGetInteger(@QueryParam("int") int[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/long") public String doGetLong(@QueryParam("long") long[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/float") public String doGetFloat(@QueryParam("float") float[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } @GET @Produces("application/double") public String doGetDouble(@QueryParam("double") double[] v) { Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 0, v.length); return "content"; } }