Added: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/MenuItemWidget.js ============================================================================== --- release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/MenuItemWidget.js (added) +++ release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/MenuItemWidget.js Fri Sep 8 23:25:34 2017 @@ -0,0 +1,32 @@ +/*************************************************************************************************************************** + * 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. + * + ***************************************************************************************************************************/ +var popupItem; + +function closePopup() { + if (popupItem != null) { + popupItem.nextElementSibling.classList.remove('popup-show'); + } +} + +function menuClick(item) { + closePopup(); + item.nextElementSibling.classList.add('popup-show'); + popupItem = item; +} + +window.onclick = function(event) { + if (popupItem != null && popupItem != event.target && ! popupItem.nextElementSibling.contains(event.target)) { + closePopup(); + } +}; \ No newline at end of file
Propchange: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/MenuItemWidget.js ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.css ============================================================================== --- release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.css (added) +++ release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.css Fri Sep 8 23:25:34 2017 @@ -0,0 +1,13 @@ +/*************************************************************************************************************************** + * 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. + * + ***************************************************************************************************************************/ Propchange: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.css ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.html ============================================================================== --- release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.html (added) +++ release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.html Fri Sep 8 23:25:34 2017 @@ -0,0 +1,121 @@ +<!-- + *************************************************************************************************************************** + * 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. + * + *************************************************************************************************************************** + --> +<form style='margin:0px'> + <table> + <tr> + <th>Search:</th> + <td> + <input name="s" size="50" value='$R{query.s}'> + </td> + <td> + <div class="tooltip"> + <small>(?)</small> + <span class="tooltiptext"> + Comma-delimited list of key/value pair search terms. + <br> + <br>Keys are column names. Values are search terms. + <br> + <br><b>Example:</b> <code>[column1=foo*, column2<100, column3=2013-2016.06.30]</code> + <br> + <br><b>String fields:</b> + <br> - <code>'*'</code> represents any character + <br> - <code>'?'</code> represents one character + <br> - Use single or double quotes for phrases + <br> e.g. <code>[column='foo bar']</code> - The term 'foo bar' + <br> - Multiple search terms are ORed + <br> e.g. <code>[column=foo bar]</code> - 'foo' OR 'bar' + <br> - Prepend <code>'+'</code> on tokens that must match + <br> e.g. <code>[column=+foo* +*bar]</code> - Start with 'foo' AND end with 'bar'. + <br> - Prepend <code>'-'</code> on tokens that must not match + <br> e.g. <code>[column=+foo* -*bar]</code> - Start with 'foo' AND does not end with 'bar'. + <br> + <br><b>Numeric fields:</b> + <br><code>[column=123]</code> - A single number + <br><code>[column=1 2 3]</code> - Multiple numbers + <br><code>[column=1-100]</code> - Between two numbers + <br><code>[column=1-100 200-300]</code> - Two ranges of numbers + <br><code>[column>100]</code> - Greater than a number + <br><code>[column>=100]</code> - Greater than or equal to a number + <br><code>[column=!123]</code> - Not a specific number + <br> + <br><b>Date/Calendar fields:</b> + <br><code>[column=2001]</code> - A specific year + <br><code>[column=2001.01.01.10.50]</code> - A specific time + <br><code>[column>2001]</code> - After a specific year + <br><code>[column>=2001]</code> - During or after a specific year + <br><code>[column=2001-2003.06.30]</code> - A date range + <br><code>[column=2001 2003 2005]</code> - Multiple ORed dates + </span> + </div> + </td> + </tr> + <tr> + <th>View:</th> + <td> + <input name="v" size="50" value='$R{query.v}'> + </td> + <td> + <div class="tooltip"> + <small>(?)</small> + <span class="tooltiptext"> + Comma-delimited list of columns to display. + <br> + <br><b>Example:</b> <code>[column1, column2]</code> + </span> + </div> + </td> + </tr> + <tr> + <th>Sort:</th> + <td> + <input name="o" size="50" value='$R{query.o}'> + </td> + <td> + <div class="tooltip"> + <small>(?)</small> + <span class="tooltiptext"> + Comma-delimited list of columns to sort by. + <br>Columns can be suffixed with '-' to indicate descending order. + <br> + <br><b>Example:</b> <code>[column1, column2-]</code> + <br> + <br><b>Notes:</b> + <br> - Columns containing collections/arrays/lists are sorted by size. + </span> + </div> + </td> + </tr> + <tr> + <th>Page:</th> + <td> + Position: <input name='p' type='number' style='width:50px' step=20 min=0 value='$R{query.p}'> + Limit: <input name='l' type='number' style='width:50px' step=20 min=0 value='$R{query.l}'> + <span style='float:right'>Ignore-case: <input name='i' type='checkbox' value='true'></span> + </td> + <td> + </td> + </tr> + <tr> + <th> + + </th> + <td colspan='2' style='text-align:right'> + <input type='reset' value='Reset'> + <input type="submit" value='Submit'> + </td> + </tr> + </table> +</form> \ No newline at end of file Propchange: release/incubator/juneau/juneau-rest-server/src/main/resources/org/apache/juneau/rest/widget/QueryMenuItem.html ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: release/incubator/juneau/juneau-rest-server/src/test/java/.gitignore ============================================================================== --- release/incubator/juneau/juneau-rest-server/src/test/java/.gitignore (added) +++ release/incubator/juneau/juneau-rest-server/src/test/java/.gitignore Fri Sep 8 23:25:34 2017 @@ -0,0 +1,12 @@ + *************************************************************************************************************************** + * 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. * + *************************************************************************************************************************** Added: release/incubator/juneau/juneau-rest-server/target/.plxarc ============================================================================== --- release/incubator/juneau/juneau-rest-server/target/.plxarc (added) +++ release/incubator/juneau/juneau-rest-server/target/.plxarc Fri Sep 8 23:25:34 2017 @@ -0,0 +1 @@ +maven-shared-archive-resources \ No newline at end of file Added: release/incubator/juneau/juneau-rest-server/target/classes/META-INF/DEPENDENCIES ============================================================================== --- release/incubator/juneau/juneau-rest-server/target/classes/META-INF/DEPENDENCIES (added) +++ release/incubator/juneau/juneau-rest-server/target/classes/META-INF/DEPENDENCIES Fri Sep 8 23:25:34 2017 @@ -0,0 +1,21 @@ +// ------------------------------------------------------------------ +// Transitive dependencies of this project determined from the +// maven pom organized by organization. +// ------------------------------------------------------------------ + +Apache Juneau REST Servlet API + + +From: 'Apache' (http://www.apache.org/) + - Apache Juneau Config File API (http://juneau.incubator.apache.org/juneau-core/juneau-config) org.apache.juneau:juneau-config:bundle:6.3.2-incubating-SNAPSHOT + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Juneau Data Transfer Objects (http://juneau.incubator.apache.org/juneau-core/juneau-dto) org.apache.juneau:juneau-dto:bundle:6.3.2-incubating-SNAPSHOT + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Juneau Marshall (http://juneau.incubator.apache.org/juneau-core/juneau-marshall) org.apache.juneau:juneau-marshall:bundle:6.3.2-incubating-SNAPSHOT + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Juneau Core (http://juneau.incubator.apache.org/juneau-core/juneau-svl) org.apache.juneau:juneau-svl:bundle:6.3.2-incubating-SNAPSHOT + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) + + + + Added: release/incubator/juneau/juneau-rest-server/target/classes/META-INF/LICENSE ============================================================================== --- release/incubator/juneau/juneau-rest-server/target/classes/META-INF/LICENSE (added) +++ release/incubator/juneau/juneau-rest-server/target/classes/META-INF/LICENSE Fri Sep 8 23:25:34 2017 @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed 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. Added: release/incubator/juneau/juneau-rest-server/target/classes/META-INF/MANIFEST.MF ============================================================================== --- release/incubator/juneau/juneau-rest-server/target/classes/META-INF/MANIFEST.MF (added) +++ release/incubator/juneau/juneau-rest-server/target/classes/META-INF/MANIFEST.MF Fri Sep 8 23:25:34 2017 @@ -0,0 +1,57 @@ +Manifest-Version: 1.0 +Bnd-LastModified: 1504912484020 +Build-Jdk: 1.8.0_77 +Built-By: james.bognar +Bundle-Description: REST servlet API +Bundle-DocURL: http://www.apache.org/ +Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.txt +Bundle-ManifestVersion: 2 +Bundle-Name: Apache Juneau REST Servlet API +Bundle-SymbolicName: org.apache.juneau.rest-server +Bundle-Vendor: Apache +Bundle-Version: 6.3.2.incubating-SNAPSHOT +Created-By: Apache Maven Bundle Plugin +Export-Package: org.apache.juneau.rest.annotation;uses:="org.apache.june + au.encoders,org.apache.juneau.html,org.apache.juneau.parser,org.apache. + juneau.rest,org.apache.juneau.rest.widget,org.apache.juneau.serializer" + ;version="6.3.2",org.apache.juneau.rest;uses:="javax.servlet,javax.serv + let.http,org.apache.juneau,org.apache.juneau.dto.swagger,org.apache.jun + eau.encoders,org.apache.juneau.html,org.apache.juneau.http,org.apache.j + uneau.ini,org.apache.juneau.json,org.apache.juneau.msgpack,org.apache.j + uneau.parser,org.apache.juneau.plaintext,org.apache.juneau.rest.annotat + ion,org.apache.juneau.rest.labels,org.apache.juneau.rest.widget,org.apa + che.juneau.serializer,org.apache.juneau.soap,org.apache.juneau.svl,org. + apache.juneau.uon,org.apache.juneau.urlencoding,org.apache.juneau.utils + ,org.apache.juneau.xml";version="6.3.2",org.apache.juneau.rest.converte + rs;uses:="org.apache.juneau,org.apache.juneau.rest";version="6.3.2",org + .apache.juneau.rest.labels;uses:="org.apache.juneau,org.apache.juneau.a + nnotation,org.apache.juneau.html.annotation,org.apache.juneau.rest";ver + sion="6.3.2",org.apache.juneau.rest.matchers;uses:="org.apache.juneau.r + est";version="6.3.2",org.apache.juneau.rest.remoteable;uses:="org.apach + e.juneau.dto,org.apache.juneau.rest,org.apache.juneau.rest.annotation"; + version="6.3.2",org.apache.juneau.rest.response;uses:="org.apache.junea + u.rest";version="6.3.2",org.apache.juneau.rest.vars;uses:="org.apache.j + uneau.svl";version="6.3.2",org.apache.juneau.rest.widget;uses:="org.apa + che.juneau,org.apache.juneau.dto.html5,org.apache.juneau.rest";version= + "6.3.2" +Import-Package: javax.activation,javax.servlet;version="[3.1,4)",javax.s + ervlet.http;version="[3.1,4)",org.apache.juneau;version="[6.3,7)",org.a + pache.juneau.annotation;version="[6.3,7)",org.apache.juneau.dto;version + ="[6.3,7)",org.apache.juneau.dto.html5;version="[6.3,7)",org.apache.jun + eau.dto.swagger;version="[6.3,7)",org.apache.juneau.encoders;version="[ + 6.3,7)",org.apache.juneau.html;version="[6.3,7)",org.apache.juneau.html + .annotation;version="[6.3,7)",org.apache.juneau.http;version="[6.3,7)", + org.apache.juneau.ini;version="[6.3,7)",org.apache.juneau.internal,org. + apache.juneau.json;version="[6.3,7)",org.apache.juneau.msgpack;version= + "[6.3,7)",org.apache.juneau.parser;version="[6.3,7)",org.apache.juneau. + plaintext;version="[6.3,7)",org.apache.juneau.rest,org.apache.juneau.re + st.annotation,org.apache.juneau.rest.labels,org.apache.juneau.rest.resp + onse,org.apache.juneau.rest.vars,org.apache.juneau.rest.widget,org.apac + he.juneau.serializer;version="[6.3,7)",org.apache.juneau.soap;version=" + [6.3,7)",org.apache.juneau.svl;version="[6.3,7)",org.apache.juneau.svl. + vars;version="[6.3,7)",org.apache.juneau.transform;version="[6.3,7)",or + g.apache.juneau.uon;version="[6.3,7)",org.apache.juneau.urlencoding;ver + sion="[6.3,7)",org.apache.juneau.utils;version="[6.3,7)",org.apache.jun + eau.xml;version="[6.3,7)" +Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.6))" +Tool: Bnd-3.2.0.201605172007 Propchange: release/incubator/juneau/juneau-rest-server/target/classes/META-INF/MANIFEST.MF ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: release/incubator/juneau/juneau-rest-server/target/classes/META-INF/NOTICE ============================================================================== --- release/incubator/juneau/juneau-rest-server/target/classes/META-INF/NOTICE (added) +++ release/incubator/juneau/juneau-rest-server/target/classes/META-INF/NOTICE Fri Sep 8 23:25:34 2017 @@ -0,0 +1,8 @@ + +Apache Juneau REST Servlet API +Copyright 2017 Apache + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallMethod.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/CallRouter.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ClientVersionMatcher.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ClientVersionMatcher.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ReaderResource$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ReaderResource$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ReaderResource.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ReaderResource.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/Redirect.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/Redirect.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody$ServletInputStream2.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody$ServletInputStream2.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestBody.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestFormData.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestFormData.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestHeaders.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestHeaders.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestPathMatch.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestPathMatch.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestQuery.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RequestQuery.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ResponseHandler.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/ResponseHandler.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestCallHandler$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestCallHandler$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestCallHandler.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestCallHandler.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestConfig.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestConfig.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$2.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$2.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestContext.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestConverter.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestConverter.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestException.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestException.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestGuard.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestGuard.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestInfoProvider$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestInfoProvider$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestInfoProvider.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestInfoProvider.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger$NoOp.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger$NoOp.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger$Normal.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger$Normal.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestLogger.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestMatcher.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestMatcher.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestMatcherReflecting.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestMatcherReflecting.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParam.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParam.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptCharsetHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptCharsetHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptEncodingHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptEncodingHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptLanguageHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AcceptLanguageHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AuthorizationHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$AuthorizationHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$BodyObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$BodyObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$CacheControlHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$CacheControlHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ConfigFileObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ConfigFileObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ConnectionHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ConnectionHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ContentLengthHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ContentLengthHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ContentTypeHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ContentTypeHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$DateHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$DateHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ExpectHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ExpectHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$FormDataObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$FormDataObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$FromHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$FromHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HasFormDataObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HasFormDataObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HasQueryObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HasQueryObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HeaderObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HeaderObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HostHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HostHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpMethodObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpMethodObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpServletRequestObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpServletRequestObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpServletResponseObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$HttpServletResponseObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfMatchHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfMatchHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfModifiedSinceHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfModifiedSinceHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfNoneMatchHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfNoneMatchHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfRangeHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfRangeHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfUnmodifiedSinceHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$IfUnmodifiedSinceHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$InputStreamObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$InputStreamObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$JuneauLoggerObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$JuneauLoggerObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$LocaleObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$LocaleObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$LoggerObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$LoggerObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MaxForwardsHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MaxForwardsHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MessageBundleObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MessageBundleObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MethodObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$MethodObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$OutputStreamObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$OutputStreamObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ParserObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ParserObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PathParameterObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PathParameterObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PathRemainderObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PathRemainderObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PragmaHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PragmaHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PropsObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$PropsObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ProxyAuthorizationHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ProxyAuthorizationHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$QueryObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$QueryObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RangeHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RangeHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ReaderObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ReaderObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RefererHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RefererHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestBodyObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestBodyObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestFormDataObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestFormDataObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestHeadersObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestHeadersObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestPathMatchObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestPathMatchObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestQueryObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RequestQueryObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ResourceBundleObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ResourceBundleObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestContextObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestContextObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestRequestObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestRequestObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestResponseObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$RestResponseObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ServletInputStreamObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ServletInputStreamObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ServletOutputStreamObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ServletOutputStreamObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$SwaggerObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$SwaggerObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$TEHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$TEHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$TimeZoneHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$TimeZoneHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UpgradeHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UpgradeHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UriContextObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UriContextObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UriResolverObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UriResolverObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UserAgentHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$UserAgentHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ViaHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$ViaHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$WarningHeader.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$WarningHeader.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$WriterObject.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults$WriterObject.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamDefaults.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamType.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestParamType.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestRequest.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestRequest.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResourceResolver.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResourceResolver.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResourceResolverSimple.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResourceResolverSimple.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResponse$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResponse$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResponse.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestResponse.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServlet.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServlet.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletDefault.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletDefault.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletException.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletException.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletGroupDefault.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestServletGroupDefault.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestUtils.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/RestUtils.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/StreamResource$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/StreamResource$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/StreamResource.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/StreamResource.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern$1.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern$1.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern$Builder.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern$Builder.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/UrlPathPattern.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/Body.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/Body.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/FormData.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/FormData.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/HasFormData.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/HasFormData.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/HasQuery.class ============================================================================== Binary file - no diff available. Propchange: release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/annotation/HasQuery.class ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream