Skip to content
This repository was archived by the owner on May 28, 2018. It is now read-only.

Commit 9f5b39d

Browse files
committed
Documentation fixes.
JERSEY-3146 JERSEY-3006 Change-Id: Ib9270be03a78356595946573c96a5056d5aa1ad3
1 parent 8e6fc40 commit 9f5b39d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/main/docbook/filters.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public class AuthorizationRequestFilter implements ContainerRequestFilter {
162162

163163
<para>
164164
The request filter is similar to the response filter but does not have access to the ContainerResponseContext
165-
as no response is accessible yet. Response filter inherits from &jaxrs.client.ClientResponseFilter;.
165+
as no response is accessible yet. Response filter inherits from &jaxrs.container.ContainerResponseFilter;.
166166
Request filter is executed before the resource method is run and before the
167167
response is created. The filter has possibility to manipulate the request parameters including request
168168
headers or entity.
@@ -363,7 +363,7 @@ public class PreMatchingFilter implements ContainerRequestFilter {
363363
and deserialization purposes.
364364
</para>
365365
<para>
366-
Let's now look at an example of a &lit.jaxrs.WriterInterceptor;
366+
Let's now look at an example of a &lit.jaxrs.ReaderInterceptor;
367367
</para>
368368
<para>
369369
<example>

docs/src/main/docbook/media.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
55
6-
Copyright (c) 2012-2015 Oracle and/or its affiliates. All rights reserved.
6+
Copyright (c) 2012-2016 Oracle and/or its affiliates. All rights reserved.
77
88
The contents of this file are subject to the terms of either the GNU
99
General Public License Version 2 only ("GPL") or the Common Development
@@ -1771,7 +1771,7 @@ public MultiPart post(final FormDataMultiPart multiPart) {
17711771
<title>Use of &lit.jersey.media.multipart.FormDataParam; annotation</title>
17721772

17731773
<programlisting language="java">@POST
1774-
@Consumes(MediaType.MULTIPART_FORM_DATA_TYPE)
1774+
@Consumes(MediaType.MULTIPART_FORM_DATA)
17751775
public String postForm(
17761776
@DefaultValue("true") @FormDataParam("enabled") boolean enabled,
17771777
@FormDataParam("data") FileData bean,

0 commit comments

Comments
 (0)