From commits-return-46810-archive-asf-public=cust-asf.ponee.io@tomee.apache.org Mon Mar 4 10:27:00 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id AAC58180627 for ; Mon, 4 Mar 2019 11:26:59 +0100 (CET) Received: (qmail 30148 invoked by uid 500); 4 Mar 2019 10:26:58 -0000 Mailing-List: contact commits-help@tomee.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tomee.apache.org Delivered-To: mailing list commits@tomee.apache.org Received: (qmail 30130 invoked by uid 99); 4 Mar 2019 10:26:58 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Mar 2019 10:26:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1E7DA8776A; Mon, 4 Mar 2019 10:26:58 +0000 (UTC) Date: Mon, 04 Mar 2019 10:26:57 +0000 To: "commits@tomee.apache.org" Subject: [tomee] branch master updated (28ef4eb -> 828613d) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155169521755.7491.5250880911886831130@gitbox.apache.org> From: jgallimore@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: tomee X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 28ef4eb93db4796de1156d5f23de98256eda7760 X-Git-Newrev: 828613d4badb2fdbb0742fe6cb46ae1ebd731c48 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jgallimore pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git. from 28ef4eb Merge pull request #430 from t4fm/master add 9b37e01 Basic JAX-RS filter example add 75b98e7 Update README add 6f405f4 Use consistent dependencies add 64c2649 Update README new 828613d Merge branch 'jaxrs-filter-example' of github.com:ShermanMarshall/tomee The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: examples/jaxrs-filter/README.adoc | 48 ++++++++++++++++ examples/jaxrs-filter/pom.xml | 31 +++++++++++ .../org/superbiz/filterexample/ExampleServlet.java | 65 ++++++++++++++++++++++ .../org/superbiz/filterexample/InboundFilter.java | 46 +++++++++++++++ .../jaxrs-filter/src/main/webapp/WEB-INF/web.xml | 7 +++ examples/jaxrs-filter/src/main/webapp/index.jsp | 5 ++ .../src/main/webapp/unauthorized/index.jsp | 5 ++ 7 files changed, 207 insertions(+) create mode 100644 examples/jaxrs-filter/README.adoc create mode 100644 examples/jaxrs-filter/pom.xml create mode 100644 examples/jaxrs-filter/src/main/java/org/superbiz/filterexample/ExampleServlet.java create mode 100644 examples/jaxrs-filter/src/main/java/org/superbiz/filterexample/InboundFilter.java create mode 100644 examples/jaxrs-filter/src/main/webapp/WEB-INF/web.xml create mode 100644 examples/jaxrs-filter/src/main/webapp/index.jsp create mode 100644 examples/jaxrs-filter/src/main/webapp/unauthorized/index.jsp