http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/html/CommonTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/html/CommonTest.java b/juneau-core/src/test/java/org/apache/juneau/html/CommonTest.java index 52fb201..c0d14fc 100755 --- a/juneau-core/src/test/java/org/apache/juneau/html/CommonTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/html/CommonTest.java @@ -107,13 +107,13 @@ public class CommonTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<table _type='object'><tr><th><string>key</string></th><th><string>value</string></th></tr><tr><td><string>f1</string></td><td><ul></ul></td></tr><tr><td><string>f2</string></td><td><table _type='array'><tr><th>s1</th><th>s2</th></tr><tr><null/></tr><tr><td><null/></td><td><string>s2</string></td></tr></table></td></tr></table>", r); t2 = p.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<table _type='object'><tr><th><string>key</string></th><th><string>value</string></th></tr><tr><td><string>f2</string></td><td><table _type='array'><tr><th>s1</th><th>s2</th></tr><tr><null/></tr><tr><td><null/></td><td><string>s2</string></td></tr></table></td></tr></table>", r); t2 = p.parse(r, C.class); @@ -141,13 +141,13 @@ public class CommonTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<table _type='object'><tr><th><string>key</string></th><th><string>value</string></th></tr><tr><td><string>f1</string></td><td><ul></ul></td></tr><tr><td><string>f2</string></td><td><table _type='array'><tr><th>s1</th><th>s2</th></tr><tr><null/></tr><tr><td><null/></td><td><string>s2</string></td></tr></table></td></tr></table>", r); t2 = p.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<table _type='object'><tr><th><string>key</string></th><th><string>value</string></th></tr><tr><td><string>f2</string></td><td><table _type='array'><tr><th>s1</th><th>s2</th></tr><tr><null/></tr><tr><td><null/></td><td><string>s2</string></td></tr></table></td></tr></table>", r); t2 = p.parse(r, D.class);
http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/jena/CommonTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/jena/CommonTest.java b/juneau-core/src/test/java/org/apache/juneau/jena/CommonTest.java index e648ac1..aa5fb50 100755 --- a/juneau-core/src/test/java/org/apache/juneau/jena/CommonTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/jena/CommonTest.java @@ -122,13 +122,13 @@ public class CommonTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<rdf:Description><jp:f1><rdf:Seq/></jp:f1><jp:f2><rdf:Seq><rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#nil'/><rdf:li rdf:parseType='Resource'><jp:s2>s2</jp:s2></rdf:li></rdf:Seq></jp:f2></rdf:Description>", strip(r)); t2 = p.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<rdf:Description><jp:f2><rdf:Seq><rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#nil'/><rdf:li rdf:parseType='Resource'><jp:s2>s2</jp:s2></rdf:li></rdf:Seq></jp:f2></rdf:Description>", strip(r)); t2 = p.parse(r, C.class); @@ -157,13 +157,13 @@ public class CommonTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<rdf:Description><jp:f1><rdf:Seq/></jp:f1><jp:f2><rdf:Seq><rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#nil'/><rdf:li rdf:parseType='Resource'><jp:s2>s2</jp:s2></rdf:li></rdf:Seq></jp:f2></rdf:Description>", strip(r)); t2 = p.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<rdf:Description><jp:f2><rdf:Seq><rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#nil'/><rdf:li rdf:parseType='Resource'><jp:s2>s2</jp:s2></rdf:li></rdf:Seq></jp:f2></rdf:Description>", strip(r)); t2 = p.parse(r, D.class); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/jena/RdfTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/jena/RdfTest.java b/juneau-core/src/test/java/org/apache/juneau/jena/RdfTest.java index 602c9ab..d171dd2 100755 --- a/juneau-core/src/test/java/org/apache/juneau/jena/RdfTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/jena/RdfTest.java @@ -526,8 +526,8 @@ public class RdfTest { @Test @SuppressWarnings("unchecked") public void testLooseCollectionsOfBeans() throws Exception { - WriterSerializer s = new RdfSerializer.XmlAbbrev().setProperty(RDF_looseCollection, true); - ReaderParser p = new RdfParser.Xml().setProperty(RDF_looseCollection, true); + WriterSerializer s = new RdfSerializer.XmlAbbrev().setProperty(RDF_looseCollections, true); + ReaderParser p = new RdfParser.Xml().setProperty(RDF_looseCollections, true); String rdfXml, expected; List<D> l = new LinkedList<D>(); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/json/CommonTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/json/CommonTest.java b/juneau-core/src/test/java/org/apache/juneau/json/CommonTest.java index 9a7c4ae..65998ad 100755 --- a/juneau-core/src/test/java/org/apache/juneau/json/CommonTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/json/CommonTest.java @@ -106,13 +106,13 @@ public class CommonTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("{f1:[],f2:[null,{s2:'s2'}]}", r); t2 = p.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("{f2:[null,{s2:'s2'}]}", r); t2 = p.parse(r, C.class); @@ -140,13 +140,13 @@ public class CommonTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("{f1:[],f2:[null,{s2:'s2'}]}", r); t2 = p.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("{f2:[null,{s2:'s2'}]}", r); t2 = p.parse(r, D.class); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UonTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UonTest.java b/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UonTest.java index a3cb6dd..ca8a60a 100755 --- a/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UonTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UonTest.java @@ -105,13 +105,13 @@ public class Common_UonTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("$o(f1=$a(),f2=$a(%00,$o(s2=s2)))", r); t2 = pe.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("$o(f2=$a(%00,$o(s2=s2)))", r); t2 = pe.parse(r, C.class); @@ -138,13 +138,13 @@ public class Common_UonTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("$o(f1=$a(),f2=$a(%00,$o(s2=s2)))", r); t2 = pe.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("$o(f2=$a(%00,$o(s2=s2)))", r); t2 = pe.parse(r, D.class); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UrlEncodingTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UrlEncodingTest.java b/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UrlEncodingTest.java index c276c53..073b31d 100755 --- a/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UrlEncodingTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/urlencoding/Common_UrlEncodingTest.java @@ -104,13 +104,13 @@ public class Common_UrlEncodingTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("f1=$a()&f2=$a(%00,$o(s2=s2))", r); t2 = p.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("f2=$a(%00,$o(s2=s2))", r); t2 = p.parse(r, C.class); @@ -137,13 +137,13 @@ public class Common_UrlEncodingTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("f1=$a()&f2=$a(%00,$o(s2=s2))", r); t2 = p.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("f2=$a(%00,$o(s2=s2))", r); t2 = p.parse(r, D.class); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-core/src/test/java/org/apache/juneau/xml/CommonTest.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/test/java/org/apache/juneau/xml/CommonTest.java b/juneau-core/src/test/java/org/apache/juneau/xml/CommonTest.java index 491d67d..abe8500 100755 --- a/juneau-core/src/test/java/org/apache/juneau/xml/CommonTest.java +++ b/juneau-core/src/test/java/org/apache/juneau/xml/CommonTest.java @@ -109,13 +109,13 @@ public class CommonTest { C t1 = C.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<object><f1></f1><f2><null/><object><s2>s2</s2></object></f2></object>", r); t2 = p.parse(r, C.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<object><f2><null/><object><s2>s2</s2></object></f2></object>", r); t2 = p.parse(r, C.class); @@ -143,13 +143,13 @@ public class CommonTest { D t1 = D.create(), t2; String r; - s.setProperty(SERIALIZER_trimEmptyLists, false); + s.setProperty(SERIALIZER_trimEmptyCollections, false); r = s.serialize(t1); assertEquals("<object><f1></f1><f2><null/><object><s2>s2</s2></object></f2></object>", r); t2 = p.parse(r, D.class); assertEqualObjects(t1, t2); - s.setProperty(SERIALIZER_trimEmptyLists, true); + s.setProperty(SERIALIZER_trimEmptyCollections, true); r = s.serialize(t1); assertEquals("<object><f2><null/><object><s2>s2</s2></object></f2></object>", r); t2 = p.parse(r, D.class); http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-releng/user-dictionary.txt ---------------------------------------------------------------------- diff --git a/juneau-releng/user-dictionary.txt b/juneau-releng/user-dictionary.txt new file mode 100644 index 0000000..59e1fdb --- /dev/null +++ b/juneau-releng/user-dictionary.txt @@ -0,0 +1,12 @@ +abbrev +juneau +juno +servlet +microservice +lax +jena +zip +json +xml +html +javadoc http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/META-INF/MANIFEST.MF ---------------------------------------------------------------------- diff --git a/juneau-server-test/META-INF/MANIFEST.MF b/juneau-server-test/META-INF/MANIFEST.MF index ba6b296..5c10c67 100755 --- a/juneau-server-test/META-INF/MANIFEST.MF +++ b/juneau-server-test/META-INF/MANIFEST.MF @@ -18,6 +18,6 @@ Bundle-SymbolicName: org.apache.juneau.server.test Bundle-Version: 5.1.1000.qualifier Bundle-Vendor: Apache Software Foundation, Juneau Main-Class: org.apache.juneau.microservice.RestMicroservice -Rest-Resources: org.apache.juneau.server.Root +Rest-Resources: org.apache.juneau.server.test.Root Main-ConfigFile: juneau-server-test.cfg Bundle-RequiredExecutionEnvironment: JavaSE-1.6 http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/AcceptCharsetResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/AcceptCharsetResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/AcceptCharsetResource.java deleted file mode 100755 index ca693ac..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/AcceptCharsetResource.java +++ /dev/null @@ -1,75 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import static org.apache.juneau.server.RestServletContext.*; - -import java.io.*; - -import org.apache.juneau.*; -import org.apache.juneau.annotation.*; -import org.apache.juneau.parser.*; -import org.apache.juneau.plaintext.*; -import org.apache.juneau.serializer.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testAcceptCharset", - serializers={PlainTextSerializer.class}, - properties={ - // Some versions of Jetty default to ISO8601, so specify UTF-8 for test consistency. - @Property(name=REST_defaultCharset,value="utf-8") - } -) -public class AcceptCharsetResource extends RestServlet { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Test that Q-values are being resolved correctly. - //==================================================================================================== - @RestMethod(name="GET", path="/testQValues") - public String testQValues() { - return "foo"; - } - - //==================================================================================================== - // Validate various Accept-Charset variations. - //==================================================================================================== - @RestMethod(name="PUT", path="/testCharsetOnResponse", parsers=TestParser.class, serializers=TestSerializer.class) - public String testCharsetOnResponse(@Content String in) { - return in; - } - - @Consumes("text/plain") - public static class TestParser extends InputStreamParser { - @SuppressWarnings("unchecked") - @Override /* Parser */ - protected <T> T doParse(ParserSession session, ClassMeta<T> type) throws Exception { - return (T)session.getProperties().getString("characterEncoding"); - } - } - - @Produces("text/plain") - public static class TestSerializer extends OutputStreamSerializer { - @Override /* Serializer */ - protected void doSerialize(SerializerSession session, Object o) throws Exception { - Writer w = new OutputStreamWriter(session.getOutputStream()); - w.append(o.toString()).append('/').append(session.getProperties().getString("characterEncoding")); - w.flush(); - w.close(); - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/BeanContextPropertiesResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/BeanContextPropertiesResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/BeanContextPropertiesResource.java deleted file mode 100755 index 5e1eef1..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/BeanContextPropertiesResource.java +++ /dev/null @@ -1,41 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import java.io.*; -import java.util.*; - -import org.apache.juneau.server.annotation.*; -import org.apache.juneau.transforms.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testBeanContext", - pojoSwaps=DateSwap.ISO8601DTZ.class -) -public class BeanContextPropertiesResource extends RestServletDefault { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Validate that transforms defined on class transform to underlying bean context. - //==================================================================================================== - @RestMethod(name="GET", path="/testClassTransforms/{d1}") - public Reader testClassTransforms(@Attr("d1") Date d1, @Param("d2") Date d2, @Header("X-D3") Date d3) throws Exception { - DateSwap df = DateSwap.ISO8601DTZ.class.newInstance(); - return new StringReader( - "d1="+df.swap(d1)+",d2="+df.swap(d2)+",d3="+df.swap(d3)+"" - ); - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/CallbackStringsResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/CallbackStringsResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/CallbackStringsResource.java deleted file mode 100755 index da42b3d..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/CallbackStringsResource.java +++ /dev/null @@ -1,52 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import java.util.*; - -import org.apache.juneau.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testCallback" -) -public class CallbackStringsResource extends RestServletDefault { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Test GET - //==================================================================================================== - @RestMethod(name="GET", path="/") - public ObjectMap test1(RestRequest req) throws Exception { - return new ObjectMap().append("method","GET").append("headers", getFooHeaders(req)).append("content", req.getInputAsString()); - } - - //==================================================================================================== - // Test PUT - //==================================================================================================== - @RestMethod(name="PUT", path="/") - public ObjectMap testCharsetOnResponse(RestRequest req) throws Exception { - return new ObjectMap().append("method","PUT").append("headers", getFooHeaders(req)).append("content", req.getInputAsString()); - } - - private Map<String,Object> getFooHeaders(RestRequest req) { - Map<String,Object> m = new TreeMap<String,Object>(); - for (Map.Entry<String,Object> e : req.getHeaders().entrySet()) - if (e.getKey().startsWith("Foo-")) - m.put(e.getKey(), e.getValue()); - return m; - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/CharsetEncodingsResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/CharsetEncodingsResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/CharsetEncodingsResource.java deleted file mode 100755 index 43b1acc..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/CharsetEncodingsResource.java +++ /dev/null @@ -1,54 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.*; -import org.apache.juneau.annotation.*; -import org.apache.juneau.internal.*; -import org.apache.juneau.parser.*; -import org.apache.juneau.serializer.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testCharsetEncodings", - defaultRequestHeaders={"Accept: text/s", "Content-Type: text/p"}, - parsers={CharsetEncodingsResource.CtParser.class}, serializers={CharsetEncodingsResource.ASerializer.class} -) -public class CharsetEncodingsResource extends RestServlet { - private static final long serialVersionUID = 1L; - - @Consumes("text/p") - public static class CtParser extends ReaderParser { - @SuppressWarnings("unchecked") - @Override /* Parser */ - protected <T> T doParse(ParserSession session, ClassMeta<T> type) throws Exception { - return (T)IOUtils.read(session.getReader()); - } - } - - @Produces("text/s") - public static class ASerializer extends WriterSerializer { - @Override /* Serializer */ - protected void doSerialize(SerializerSession session, Object o) throws Exception { - session.getWriter().write(o.toString()); - } - } - - @RestMethod(name="PUT", path="/") - public String test1(RestRequest req, @Content String in) { - return req.getCharacterEncoding() + "/" + in + "/" + req.getCharacterEncoding(); - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/ClientVersionResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/ClientVersionResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/ClientVersionResource.java deleted file mode 100644 index f6503ce..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/ClientVersionResource.java +++ /dev/null @@ -1,93 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.microservice.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testClientVersion", - children={ - ClientVersionResource.DefaultHeader.class, - ClientVersionResource.CustomHeader.class - } -) -@SuppressWarnings("serial") -public class ClientVersionResource extends Resource { - - @RestResource( - path="/defaultHeader" - ) - public static class DefaultHeader extends Resource { - - @RestMethod(name="GET", path="/") - public String test0() { - return "no-version"; - } - - @RestMethod(name="GET", path="/", clientVersion="[0.0,1.0)") - public String test1() { - return "[0.0,1.0)"; - } - - @RestMethod(name="GET", path="/", clientVersion="[1.0,1.0]") - public String test2() { - return "[1.0,1.0]"; - } - - @RestMethod(name="GET", path="/", clientVersion="[1.1,2)") - public String test3() { - return "[1.1,2)"; - } - - @RestMethod(name="GET", path="/", clientVersion="2") - public String test4() { - return "2"; - } - } - - @RestResource( - path="/customHeader", - clientVersionHeader="Custom-Client-Version" - ) - public static class CustomHeader extends Resource { - - @RestMethod(name="GET", path="/") - public String test0() { - return "no-version"; - } - - @RestMethod(name="GET", path="/", clientVersion="[0.0,1.0)") - public String test1() { - return "[0.0,1.0)"; - } - - @RestMethod(name="GET", path="/", clientVersion="[1.0,1.0]") - public String test2() { - return "[1.0,1.0]"; - } - - @RestMethod(name="GET", path="/", clientVersion="[1.1,2)") - public String test3() { - return "[1.1,2)"; - } - - @RestMethod(name="GET", path="/", clientVersion="2") - public String test4() { - return "2"; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/ConfigResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/ConfigResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/ConfigResource.java deleted file mode 100755 index 2143b94..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/ConfigResource.java +++ /dev/null @@ -1,37 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.ini.*; -import org.apache.juneau.microservice.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testConfig" -) -@SuppressWarnings("serial") -public class ConfigResource extends Resource { - - @RestMethod(name="GET", path="/") - public ConfigFile test1(RestRequest req) { - return req.getConfig(); - } - - @RestMethod(name="GET", path="/{key}/{class}") - public Object test2(RestRequest req, @Attr("key") String key, @Attr("class") Class<?> c) throws Exception { - return req.getConfig().getObject(c, key); - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/ContentResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/ContentResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/ContentResource.java deleted file mode 100755 index 08a17db..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/ContentResource.java +++ /dev/null @@ -1,80 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import static org.apache.juneau.server.RestServletContext.*; - -import java.util.*; - -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testContent", - properties={ - @Property(name=REST_allowMethodParam, value="*") - } -) -public class ContentResource extends RestServletDefault { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Basic tests - //==================================================================================================== - @RestMethod(name="POST", path="/boolean") - public boolean testBool(@Content boolean b) { - return b; - } - - @RestMethod(name="POST", path="/Boolean") - public Boolean testBoolean(@Content Boolean b) { - return b; - } - - @RestMethod(name="POST", path="/int") - public int testInt(@Content int i) { - return i; - } - - @RestMethod(name="POST", path="/Integer") - public Integer testInteger(@Content Integer i) { - return i; - } - - @RestMethod(name="POST", path="/float") - public float testFloat(@Content float f) { - return f; - } - - @RestMethod(name="POST", path="/Float") - public Float testFloat2(@Content Float f) { - return f; - } - - @RestMethod(name="POST", path="/Map") - public TreeMap<String,String> testMap(@Content TreeMap<String,String> m) { - return m; - } - - @RestMethod(name="POST", path="/B") - public DTO2s.B testPojo1(@Content DTO2s.B b) { - return b; - } - - @RestMethod(name="POST", path="/C") - public DTO2s.C testPojo2(@Content DTO2s.C c) { - return c; - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/DTO2s.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/DTO2s.java b/juneau-server-test/src/main/java/org/apache/juneau/server/DTO2s.java deleted file mode 100755 index a47412f..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/DTO2s.java +++ /dev/null @@ -1,139 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import java.util.*; - -import org.apache.juneau.annotation.*; -import org.apache.juneau.urlencoding.annotation.*; - -public class DTO2s { - - @Bean(sort=true) - public static class A { - public String a; - public int b; - public boolean c; - - public static A create() { - A t = new A(); - t.a = "a"; - t.b = 1; - t.c = true; - return t; - } - - } - - @SuppressWarnings("serial") - @Bean(sort=true) - public static class B { - public String[] f01; - public List<String> f02; - public int[] f03; - public List<Integer> f04; - public String[][] f05; - public List<String[]> f06; - public A[] f07; - public List<A> f08; - public A[][] f09; - public List<List<A>> f10; - - private String[] f11; - private List<String> f12; - private int[] f13; - private List<Integer> f14; - private String[][] f15; - private List<String[]> f16; - private A[] f17; - private List<A> f18; - private A[][] f19; - private List<List<A>> f20; - - public String[] getF11() { return f11; } - public List<String> getF12() { return f12; } - public int[] getF13() { return f13; } - public List<Integer> getF14() { return f14; } - public String[][] getF15() { return f15; } - public List<String[]> getF16() { return f16; } - public A[] getF17() { return f17; } - public List<A> getF18() { return f18; } - public A[][] getF19() { return f19; } - public List<List<A>> getF20() { return f20; } - - public void setF11(String[] f11) { this.f11 = f11; } - public void setF12(List<String> f12) { this.f12 = f12; } - public void setF13(int[] f13) { this.f13 = f13; } - public void setF14(List<Integer> f14) { this.f14 = f14; } - public void setF15(String[][] f15) { this.f15 = f15; } - public void setF16(List<String[]> f16) { this.f16 = f16; } - public void setF17(A[] f17) { this.f17 = f17; } - public void setF18(List<A> f18) { this.f18 = f18; } - public void setF19(A[][] f19) { this.f19 = f19; } - public void setF20(List<List<A>> f20) { this.f20 = f20; } - - static B create() { - B t = new B(); - t.f01 = new String[]{"a","b"}; - t.f02 = new ArrayList<String>(){{add("c");add("d");}}; - t.f03 = new int[]{1,2}; - t.f04 = new ArrayList<Integer>(){{add(3);add(4);}}; - t.f05 = new String[][]{{"e","f"},{"g","h"}}; - t.f06 = new ArrayList<String[]>(){{add(new String[]{"i","j"});add(new String[]{"k","l"});}}; - t.f07 = new A[]{A.create(),A.create()}; - t.f08 = new ArrayList<A>(){{add(A.create());add(A.create());}}; - t.f09 = new A[][]{{A.create()},{A.create()}}; - t.f10 = new ArrayList<List<A>>(){{add(Arrays.asList(A.create()));add(Arrays.asList(A.create()));}}; - t.setF11(new String[]{"a","b"}); - t.setF12(new ArrayList<String>(){{add("c");add("d");}}); - t.setF13(new int[]{1,2}); - t.setF14(new ArrayList<Integer>(){{add(3);add(4);}}); - t.setF15(new String[][]{{"e","f"},{"g","h"}}); - t.setF16(new ArrayList<String[]>(){{add(new String[]{"i","j"});add(new String[]{"k","l"});}}); - t.setF17(new A[]{A.create(),A.create()}); - t.setF18(new ArrayList<A>(){{add(A.create());add(A.create());}}); - t.setF19(new A[][]{{A.create()},{A.create()}}); - t.setF20(new ArrayList<List<A>>(){{add(Arrays.asList(A.create()));add(Arrays.asList(A.create()));}}); - return t; - } - } - - @UrlEncoding(expandedParams=true) - public static class C extends B { - @SuppressWarnings("serial") - static C create() { - C t = new C(); - t.f01 = new String[]{"a","b"}; - t.f02 = new ArrayList<String>(){{add("c");add("d");}}; - t.f03 = new int[]{1,2}; - t.f04 = new ArrayList<Integer>(){{add(3);add(4);}}; - t.f05 = new String[][]{{"e","f"},{"g","h"}}; - t.f06 = new ArrayList<String[]>(){{add(new String[]{"i","j"});add(new String[]{"k","l"});}}; - t.f07 = new A[]{A.create(),A.create()}; - t.f08 = new ArrayList<A>(){{add(A.create());add(A.create());}}; - t.f09 = new A[][]{{A.create()},{A.create()}}; - t.f10 = new ArrayList<List<A>>(){{add(Arrays.asList(A.create()));add(Arrays.asList(A.create()));}}; - t.setF11(new String[]{"a","b"}); - t.setF12(new ArrayList<String>(){{add("c");add("d");}}); - t.setF13(new int[]{1,2}); - t.setF14(new ArrayList<Integer>(){{add(3);add(4);}}); - t.setF15(new String[][]{{"e","f"},{"g","h"}}); - t.setF16(new ArrayList<String[]>(){{add(new String[]{"i","j"});add(new String[]{"k","l"});}}); - t.setF17(new A[]{A.create(),A.create()}); - t.setF18(new ArrayList<A>(){{add(A.create());add(A.create());}}); - t.setF19(new A[][]{{A.create()},{A.create()}}); - t.setF20(new ArrayList<List<A>>(){{add(Arrays.asList(A.create()));add(Arrays.asList(A.create()));}}); - return t; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/DefaultContentTypesResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/DefaultContentTypesResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/DefaultContentTypesResource.java deleted file mode 100755 index 70e74e6..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/DefaultContentTypesResource.java +++ /dev/null @@ -1,127 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import static org.apache.juneau.server.annotation.Inherit.*; - -import org.apache.juneau.*; -import org.apache.juneau.annotation.*; -import org.apache.juneau.parser.*; -import org.apache.juneau.serializer.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testDefaultContentTypes", - defaultRequestHeaders={" Accept : text/s2 "," Content-Type : text/p2 "}, - parsers={DefaultContentTypesResource.P1.class,DefaultContentTypesResource.P2.class}, serializers={DefaultContentTypesResource.S1.class,DefaultContentTypesResource.S2.class} -) -@SuppressWarnings("synthetic-access") -public class DefaultContentTypesResource extends RestServlet { - private static final long serialVersionUID = 1L; - - @Consumes("text/p1") - public static class P1 extends DummyParser { public P1() {super("p1");}} - - @Consumes("text/p2") - public static class P2 extends DummyParser { public P2() {super("p2");}} - - @Consumes("text/p3") - public static class P3 extends DummyParser { public P3() {super("p3");}} - - @Produces("text/s1") - public static class S1 extends DummySerializer { public S1() {super("s1");}} - - @Produces("text/s2") - public static class S2 extends DummySerializer { public S2() {super("s2");}} - - @Produces("text/s3") - public static class S3 extends DummySerializer { public S3() {super("s3");}} - - /** - * Test that default Accept and Content-Type headers on servlet annotation are picked up. - */ - @RestMethod(name="PUT", path="/testDefaultHeadersOnServletAnnotation") - public String testDefaultHeadersOnServletAnnotation(@Content String in) { - return in; - } - - //==================================================================================================== - // Test that default Accept and Content-Type headers on servlet annotation are picked up - // when @RestMethod.parsers/serializers annotations are used. - //==================================================================================================== - @RestMethod(name="PUT", path="/testRestMethodParsersSerializers", parsers=P3.class, serializers=S3.class) - public String testRestMethodParsersSerializers(@Content String in) { - return in; - } - - //==================================================================================================== - // Test that default Accept and Content-Type headers on servlet annotation are picked up - // when @RestMethod.addParsers/addSerializers annotations are used. - //==================================================================================================== - @RestMethod(name="PUT", path="/testRestMethodAddParsersSerializers", parsers=P3.class, parsersInherit=PARSERS, serializers=S3.class, serializersInherit=SERIALIZERS) - public String testRestMethodAddParsersSerializers(@Content String in) { - return in; - } - - //==================================================================================================== - // Various Accept incantations. - //==================================================================================================== - @RestMethod(name="PUT", path="/testAccept") - public String testAccept(@Content String in) { - return in; - } - - //==================================================================================================== - // Test that default Accept and Content-Type headers on method annotation are picked up - // when @RestMethod.parsers/serializers annotations are used. - //==================================================================================================== - @RestMethod(name="PUT", path="/testRestMethodParserSerializerAnnotations", defaultRequestHeaders={"Accept: text/s3","Content-Type: text/p3"}, parsers=P3.class, serializers=S3.class) - public String testRestMethodParserSerializerAnnotations(@Content String in) { - return in; - } - - //==================================================================================================== - // Test that default Accept and Content-Type headers on method annotation are picked up - // when @RestMethod.addParsers/addSerializers annotations are used. - //==================================================================================================== - @RestMethod(name="PUT", path="/testRestMethodAddParsersSerializersAnnotations", defaultRequestHeaders={"Accept: text/s3","Content-Type: text/p3"}, parsers=P3.class, parsersInherit=PARSERS, serializers=S3.class, serializersInherit=SERIALIZERS) - public String testRestMethodAddParsersSerializersAnnotations(@Content String in) { - return in; - } - - public static class DummyParser extends ReaderParser { - private String name; - private DummyParser(String name) { - this.name = name; - } - @SuppressWarnings("unchecked") - @Override /* Parser */ - protected <T> T doParse(ParserSession session, ClassMeta<T> type) throws Exception { - return (T)name; - } - } - - public static class DummySerializer extends WriterSerializer { - private String name; - private DummySerializer(String name) { - this.name = name; - } - @Override /* Serializer */ - protected void doSerialize(SerializerSession session, Object output) throws Exception { - session.getWriter().write(name + "/" + output); - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/ErrorConditionsResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/ErrorConditionsResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/ErrorConditionsResource.java deleted file mode 100755 index da59d1d..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/ErrorConditionsResource.java +++ /dev/null @@ -1,134 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - * Validates correct parser is used. - */ -@RestResource( - path="/testErrorConditions" -) -public class ErrorConditionsResource extends RestServletDefault { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Test non-existent properties - //==================================================================================================== - @RestMethod(name="PUT", path="/testNonExistentBeanProperties") - public String testNonExistentBeanProperties(@Content Test1 in) { - return "OK"; - } - - public static class Test1 { - public String f1; - } - - //==================================================================================================== - // Test trying to set properties to wrong data type - //==================================================================================================== - @RestMethod(name="PUT", path="/testWrongDataType") - public String testWrongDataType(@Content Test2 in) { - return "OK"; - } - - public static class Test2 { - public int f1; - } - - //==================================================================================================== - // Test trying to parse into class with non-public no-arg constructor. - //==================================================================================================== - @RestMethod(name="PUT", path="/testParseIntoNonConstructableBean") - public String testParseIntoNonConstructableBean(@Content Test3a in) { - return "OK"; - } - - public static class Test3a { - public int f1; - private Test3a(){} - } - - //==================================================================================================== - // Test trying to parse into non-static inner class - //==================================================================================================== - @RestMethod(name="PUT", path="/testParseIntoNonStaticInnerClass") - public String testParseIntoNonStaticInnerClass(@Content Test3b in) { - return "OK"; - } - - public class Test3b { - public Test3b(){} - } - - //==================================================================================================== - // Test trying to parse into non-public inner class - //==================================================================================================== - @RestMethod(name="PUT", path="/testParseIntoNonPublicInnerClass") - public String testParseIntoNonPublicInnerClass(@Content Test3b1 in) { - return "OK"; - } - - static class Test3b1 { - public Test3b1(){} - } - - //==================================================================================================== - // Test exception thrown during bean construction. - //==================================================================================================== - @RestMethod(name="PUT", path="/testThrownConstructorException") - public String testThrownConstructorException(@Content Test3c in) { - return "OK"; - } - - public static class Test3c { - public int f1; - private Test3c(){} - public static Test3c valueOf(String s) { - throw new RuntimeException("Test error"); - } - } - - //==================================================================================================== - // Test trying to set parameters to invalid types. - //==================================================================================================== - @RestMethod(name="PUT", path="/testSetParameterToInvalidTypes/{a1}") - public String testSetParameterToInvalidTypes(@Param("p1") int t1, @Attr int a1, @Header("h1") int h1) { - return "OK"; - } - - //==================================================================================================== - // Test SC_NOT_FOUND & SC_METHOD_NOT_ALLOWED - //==================================================================================================== - @RestMethod(name="GET", path="/test404and405") - public String test404and405() { - return "OK"; - } - - //==================================================================================================== - // Test SC_PRECONDITION_FAILED - //==================================================================================================== - @RestMethod(name="GET", path="/test412", matchers=NeverMatcher.class) - public String test412() { - return "OK"; - } - - public static class NeverMatcher extends RestMatcher { - @Override /* RestMatcher */ - public boolean matches(RestRequest req) { - return false; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/GroupsResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/GroupsResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/GroupsResource.java deleted file mode 100755 index 0fb71af..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/GroupsResource.java +++ /dev/null @@ -1,71 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.*; -import org.apache.juneau.annotation.*; -import org.apache.juneau.internal.*; -import org.apache.juneau.parser.*; -import org.apache.juneau.serializer.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testGroups" -) -public class GroupsResource extends RestServlet { - private static final long serialVersionUID = 1L; - - @Produces({"text/s1","text/s2"}) - public static class SSerializer extends WriterSerializer { - @Override /* Serializer */ - protected void doSerialize(SerializerSession session, Object output) throws Exception { - session.getWriter().write("text/s," + output); - } - } - - @Consumes({"text/p1","text/p2"}) - public static class PParser extends ReaderParser { - @SuppressWarnings("unchecked") - @Override /* Parser */ - protected <T> T doParse(ParserSession session, ClassMeta<T> type) throws Exception { - return (T)IOUtils.read(session.getReader()); - } - } - - - @Override /* RestServlet */ - public SerializerGroup createSerializers(ObjectMap properties, Class<?>[] beanFilters, Class<?>[] pojoSwaps) throws Exception { - return new SerializerGroup().append(SSerializer.class).setProperties(properties).addBeanFilters(beanFilters).addPojoSwaps(pojoSwaps); - } - - @Override /* RestServlet */ - public ParserGroup createParsers(ObjectMap properties, Class<?>[] beanFilters, Class<?>[] pojoSwaps) throws Exception { - return new ParserGroup().append(PParser.class).setProperties(properties).addBeanFilters(beanFilters).addPojoSwaps(pojoSwaps); - } - - //==================================================================================================== - // Serializer defined on class. - //==================================================================================================== - @RestMethod(name="GET", path="/testSerializerDefinedOnClass") - public String testSerializerDefinedOnClass_get() { - return "GET"; - } - - @RestMethod(name="PUT", path="/testSerializerDefinedOnClass") - public String testSerializerDefinedOnClass_put(@Content String in) { - return in; - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/GzipResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/GzipResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/GzipResource.java deleted file mode 100755 index 673f55e..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/GzipResource.java +++ /dev/null @@ -1,110 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import java.io.*; - -import org.apache.juneau.encoders.*; -import org.apache.juneau.plaintext.*; -import org.apache.juneau.server.annotation.*; - -/** - * JUnit automated testcase resource. - */ -public class GzipResource { - - //================================================================================ - // Encoder for "myencoding" encoding - //================================================================================ - public static class MyEncoder extends GzipEncoder { - @Override /* Encoder */ - public String[] getCodings() { - return new String[]{"mycoding"}; - } - } - - //==================================================================================================== - // Test with no compression enabled. - //==================================================================================================== - @RestResource( - path="/testGzipOff", - serializers=PlainTextSerializer.class, - parsers=PlainTextParser.class - ) - public static class TestGzipOff extends RestServlet { - private static final long serialVersionUID = 1L; - @RestMethod(name="GET", path="/") - public String test1get() { - return "foo"; - } - @RestMethod(name="PUT", path="/") - public String test1put(@Content String in) { - return in; - } - } - - //==================================================================================================== - // Test with compression enabled. - //==================================================================================================== - @RestResource( - path="/testGzipOn", - serializers=PlainTextSerializer.class, - parsers=PlainTextParser.class, - encoders=MyEncoder.class - ) - public static class TestGzipOn extends RestServlet { - private static final long serialVersionUID = 1L; - @RestMethod(name="GET", path="/") - public String test1() { - return "foo"; - } - @RestMethod(name="PUT", path="/") - public String test1put(@Content String in) { - return in; - } - // This method bypasses the content type and encoding from - // the serializers and encoders when calling getOutputStream() directly. - @RestMethod(name="GET", path="/direct") - public void direct(RestResponse res) throws Exception { - res.setContentType("text/direct"); - OutputStream os = res.getOutputStream(); - os.write("test".getBytes()); - os.flush(); - } - - // This method bypasses the content type and encoding from - // the serializers and encoders when calling getWriter() directly. - @RestMethod(name="GET", path="/direct2") - public void direct2(RestResponse res) throws Exception { - Writer w = res.getWriter(); - w.append("test"); - w.flush(); - } - - // This method uses getNegotiatedWriter() which should use GZip encoding. - @RestMethod(name="GET", path="/direct3") - public void direct3(RestResponse res) throws Exception { - Writer w = res.getNegotiatedWriter(); - w.append("test"); - w.flush(); - } - - // This method overrides the set of encoders at the method level and so shouldn't use GZip encoding. - @RestMethod(name="GET", path="/direct4", inheritEncoders=false) - public void direct4(RestResponse res) throws Exception { - Writer w = res.getNegotiatedWriter(); - w.append("test"); - w.flush(); - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/InheritanceResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/InheritanceResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/InheritanceResource.java deleted file mode 100755 index c3907b5..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/InheritanceResource.java +++ /dev/null @@ -1,316 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import static org.apache.juneau.server.annotation.Inherit.*; - -import java.io.*; -import java.util.*; - -import org.apache.juneau.*; -import org.apache.juneau.annotation.*; -import org.apache.juneau.encoders.*; -import org.apache.juneau.json.*; -import org.apache.juneau.parser.*; -import org.apache.juneau.serializer.*; -import org.apache.juneau.server.annotation.*; -import org.apache.juneau.server.annotation.Properties; -import org.apache.juneau.transform.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testInheritance", - serializers={InheritanceResource.S1.class,InheritanceResource.S2.class}, - parsers={InheritanceResource.P1.class,InheritanceResource.P2.class}, - encoders={InheritanceResource.E1.class,InheritanceResource.E2.class}, - pojoSwaps={InheritanceResource.F1Swap.class}, - properties={@Property(name="p1",value="v1"), @Property(name="p2",value="v2")} -) -public class InheritanceResource extends RestServlet { - private static final long serialVersionUID = 1L; - - @RestResource( - serializers={S3.class,S4.class}, - parsers={P3.class,P4.class}, - encoders={E3.class,E4.class}, - pojoSwaps={F2Swap.class}, - properties={@Property(name="p2",value="v2a"), @Property(name="p3",value="v3"), @Property(name="p4",value="v4")} - ) - public static class Sub extends InheritanceResource { - private static final long serialVersionUID = 1L; - } - - //==================================================================================================== - // Test serializer inheritance. - //==================================================================================================== - @RestResource(path="/testInheritanceSerializers") - public static class TestSerializers extends Sub { - private static final long serialVersionUID = 1L; - - // Should show ['text/s3','text/s4','text/s1','text/s2'] - @RestMethod( - name="GET", - path="/test1" - ) - public Reader test1(RestResponse res) { - return new StringReader(new ObjectList(res.getSupportedMediaTypes()).toString()); - } - - // Should show ['text/s5'] - @RestMethod( - name="GET", - path="/test2", - serializers=S5.class - ) - public Reader test2(RestResponse res) { - return new StringReader(new ObjectList(res.getSupportedMediaTypes()).toString()); - } - - // Should show ['text/s5','text/s3','text/s4','text/s1','text/s2'] - @RestMethod( - name="GET", - path="/test3", - serializers=S5.class, - serializersInherit=SERIALIZERS - ) - public Reader test3(RestResponse res) { - return new StringReader(new ObjectList(res.getSupportedMediaTypes()).toString()); - } - } - - //==================================================================================================== - // Test parser inheritance. - //==================================================================================================== - @RestResource(path="/testInheritanceParsers") - public static class TestParsers extends Sub { - private static final long serialVersionUID = 1L; - - // Should show ['text/p3','text/p4','text/p1','text/p2'] - @RestMethod( - name="GET", - path="/test1" - ) - public Reader test1(RestRequest req) { - return new StringReader(new ObjectList(req.getSupportedMediaTypes()).toString()); - } - - // Should show ['text/p5'] - @RestMethod( - name="GET", - path="/test2", - parsers=P5.class - ) - public Reader test2(RestRequest req) { - return new StringReader(new ObjectList(req.getSupportedMediaTypes()).toString()); - } - - // Should show ['text/p5','text/p3','text/p4','text/p1','text/p2'] - @RestMethod( - name="GET", - path="/test3", - parsers=P5.class, - parsersInherit=PARSERS - ) - public Reader test3(RestRequest req) { - return new StringReader(new ObjectList(req.getSupportedMediaTypes()).toString()); - } - } - - //==================================================================================================== - // Test encoder inheritance. - //==================================================================================================== - @RestResource(path="/testInheritanceEncoders") - public static class TestEncoders extends Sub { - private static final long serialVersionUID = 1L; - - // Should show ['e3','e4','e1','e2','identity'] - @RestMethod(name="GET", path="/test") - public Reader test(RestResponse res) throws RestServletException { - return new StringReader(new ObjectList(res.getSupportedEncodings()).toString()); - } - } - - //==================================================================================================== - // Test filter inheritance. - //==================================================================================================== - @RestResource(path="/testInheritanceTransforms", serializers=JsonSerializer.Simple.class) - public static class TestTransforms extends Sub { - private static final long serialVersionUID = 1L; - - // Should show ['F1Swap','F2Swap','Foo3'] - @RestMethod(name="GET", path="/test1") - public Object[] test1() { - return new Object[]{new Foo1(), new Foo2(), new Foo3()}; - } - - // Should show ['F1Swap','F2Swap','F3Swap'] - // Inherited serializer already has parent filters applied. - @RestMethod(name="GET", path="/test2", pojoSwaps=F3Swap.class) - public Object[] test2() { - return new Object[]{new Foo1(), new Foo2(), new Foo3()}; - } - - // Should show ['F1Swap','F2Swap','F3Swap'] - @RestMethod(name="GET", path="/test3", pojoSwaps=F3Swap.class, serializersInherit=TRANSFORMS) - public Object[] test3() { - return new Object[]{new Foo1(), new Foo2(), new Foo3()}; - } - - // Should show ['Foo1','Foo2','F3Swap'] - // Overriding serializer does not have parent filters applied. - @RestMethod(name="GET", path="/test4", serializers=JsonSerializer.Simple.class, pojoSwaps=F3Swap.class) - public Object[] test4() { - return new Object[]{new Foo1(), new Foo2(), new Foo3()}; - } - - // Should show ['F1Swap','F2Swap','F3Swap'] - // Overriding serializer does have parent filters applied. - @RestMethod(name="GET", path="/test5", serializers=JsonSerializer.Simple.class, pojoSwaps=F3Swap.class, serializersInherit=TRANSFORMS) - public Object[] test5() { - return new Object[]{new Foo1(), new Foo2(), new Foo3()}; - } - } - - //==================================================================================================== - // Test properties inheritance. - //==================================================================================================== - @RestResource(path="/testInheritanceProperties", serializers=JsonSerializer.Simple.class) - public static class TestProperties extends Sub { - private static final long serialVersionUID = 1L; - - // Should show {p1:'v1',p2:'v2a',p3:'v3',p4:'v4'} - @RestMethod(name="GET", path="/test1") - public ObjectMap test1(@Properties ObjectMap properties) { - return transform(properties); - } - - // Should show {p1:'v1',p2:'v2a',p3:'v3',p4:'v4a',p5:'v5'} when override is false. - // Should show {p1:'x',p2:'x',p3:'x',p4:'x',p5:'x'} when override is true. - @RestMethod(name="GET", path="/test2", - properties={@Property(name="p4",value="v4a"), @Property(name="p5", value="v5")}) - public ObjectMap test2(@Properties ObjectMap properties, @HasParam("override") boolean override) { - if (override) { - properties.put("p1", "x"); - properties.put("p2", "x"); - properties.put("p3", "x"); - properties.put("p4", "x"); - properties.put("p5", "x"); - } - return transform(properties); - } - - private ObjectMap transform(ObjectMap properties) { - ObjectMap m = new ObjectMap(); - for (Map.Entry<String,Object> e : properties.entrySet()) { - if (e.getKey().startsWith("p")) - m.put(e.getKey(), e.getValue()); - } - return m; - } - } - - public static class DummyParser extends ReaderParser { - @Override /* Parser */ - protected <T> T doParse(ParserSession session, ClassMeta<T> type) throws Exception { - return null; - } - } - - public static class DummySerializer extends WriterSerializer { - @Override /* Serializer */ - protected void doSerialize(SerializerSession session, Object o) throws Exception { - session.getWriter().write(o.toString()); - } - } - - @Consumes("text/p1") - public static class P1 extends DummyParser{} - - @Consumes("text/p2") - public static class P2 extends DummyParser{} - - @Consumes("text/p3") - public static class P3 extends DummyParser{} - - @Consumes("text/p4") - public static class P4 extends DummyParser{} - - @Consumes("text/p5") - public static class P5 extends DummyParser{} - - @Produces("text/s1") - public static class S1 extends DummySerializer{} - - @Produces("text/s2") - public static class S2 extends DummySerializer{} - - @Produces("text/s3") - public static class S3 extends DummySerializer{} - - @Produces("text/s4") - public static class S4 extends DummySerializer{} - - @Produces("text/s5") - public static class S5 extends DummySerializer{} - - public static class E1 extends IdentityEncoder { - @Override public String[] getCodings() { - return new String[]{"e1"}; - } - } - - public static class E2 extends IdentityEncoder { - @Override public String[] getCodings() { - return new String[]{"e2"}; - } - } - - public static class E3 extends IdentityEncoder { - @Override public String[] getCodings() { - return new String[]{"e3"}; - } - } - - public static class E4 extends IdentityEncoder { - @Override public String[] getCodings() { - return new String[]{"e4"}; - } - } - - public static class Foo1 {@Override public String toString(){return "Foo1";}} - public static class Foo2 {@Override public String toString(){return "Foo2";}} - public static class Foo3 {@Override public String toString(){return "Foo3";}} - - public static class F1Swap extends PojoSwap<Foo1,String> { - @Override /* PojoSwap */ - public String swap(Foo1 o) throws SerializeException { - return "F1"; - } - } - - public static class F2Swap extends PojoSwap<Foo2,String> { - @Override /* PojoSwap */ - public String swap(Foo2 o) throws SerializeException { - return "F2"; - } - } - - public static class F3Swap extends PojoSwap<Foo3,String> { - @Override /* PojoSwap */ - public String swap(Foo3 o) throws SerializeException { - return "F3"; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojo.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojo.java b/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojo.java deleted file mode 100755 index 849112b..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojo.java +++ /dev/null @@ -1,45 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import java.util.*; - -/** - * A large POJO object. - */ -@SuppressWarnings("serial") -public class LargePojo { - public A1Map a1Map; - public A1List a1List; - public A1[] a1Array; - - public static LargePojo create() { - LargePojo a = new LargePojo(); - a.a1Map = new A1Map(); - a.a1List = new A1List(); - for (int i = 0; i < 20000; i++) { - a.a1Map.put(String.valueOf(i), new A1()); - a.a1List.add(new A1()); - } - a.a1Array = a.a1List.toArray(new A1[0]); - return a; - } - - public static class A1 { - public String f1 = "a123456789b123456789c123456789d123456789e123456789f123456789g123456789h123456789i123456789j123456789"; - } - - public static class A1Map extends LinkedHashMap<String,A1> {} - - public static class A1List extends LinkedList<A1> {} -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d45e1351/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojosResource.java ---------------------------------------------------------------------- diff --git a/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojosResource.java b/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojosResource.java deleted file mode 100755 index 02f9757..0000000 --- a/juneau-server-test/src/main/java/org/apache/juneau/server/LargePojosResource.java +++ /dev/null @@ -1,39 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.server; - -import org.apache.juneau.server.annotation.*; -import org.apache.juneau.server.jena.*; - -/** - * JUnit automated testcase resource. - */ -@RestResource( - path="/testLargePojos" -) -public class LargePojosResource extends RestServletJenaDefault { - private static final long serialVersionUID = 1L; - - //==================================================================================================== - // Test how long it takes to serialize/parse various content types. - //==================================================================================================== - @RestMethod(name="GET", path="/") - public LargePojo testGet() { - return LargePojo.create(); - } - - @RestMethod(name="PUT", path="/") - public String testPut(@Content LargePojo in) { - return "ok"; - } -}
