package org.jboss.resteasy.test.resource.param.resource; import org.jboss.resteasy.test.resource.param.MatrixParamAsPrimitiveTest; import org.junit.Assert; import javax.ws.rs.DefaultValue; import javax.ws.rs.GET; import javax.ws.rs.MatrixParam; import javax.ws.rs.Path; import javax.ws.rs.Produces; @Path("/wrappers/default") public class MatrixParamAsPrimitiveWrappersDefault { @GET @Produces("application/boolean") public String doGet(@MatrixParam("boolean") @DefaultValue("true") Boolean v) { Assert.assertEquals(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, true, v.booleanValue()); return "content"; } @GET @Produces("application/byte") public String doGet(@MatrixParam("byte") @DefaultValue("127") Byte v) { Assert.assertTrue(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, (byte) 127 == v.byteValue()); return "content"; } @GET @Produces("application/short") public String doGet(@MatrixParam("short") @DefaultValue("32767") Short v) { Assert.assertTrue(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, (short) 32767 == v.shortValue()); return "content"; } @GET @Produces("application/int") public String doGet(@MatrixParam("int") @DefaultValue("2147483647") Integer v) { Assert.assertEquals(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, 2147483647, v.intValue()); return "content"; } @GET @Produces("application/long") public String doGet(@MatrixParam("long") @DefaultValue("9223372036854775807") Long v) { Assert.assertEquals(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, 9223372036854775807L, v.longValue()); return "content"; } @GET @Produces("application/float") public String doGet(@MatrixParam("float") @DefaultValue("3.14159265") Float v) { Assert.assertEquals(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, 3.14159265f, v.floatValue(), 0.0f); return "content"; } @GET @Produces("application/double") public String doGet(@MatrixParam("double") @DefaultValue("3.14159265358979") Double v) { Assert.assertEquals(MatrixParamAsPrimitiveTest.ERROR_MESSAGE, 3.14159265358979d, v.doubleValue(), 0.0); return "content"; } }