Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* JavaBeans compatible!
*
* @since 0.9
* @deprecated This class should not be used directly because of unsecure XMLEncoder/XMLDecoder usage.
* @deprecated This class should not be used directly because of insecure XMLEncoder/XMLDecoder usage.
*/
@Deprecated(forRemoval = true)
public class XmlSerializer implements Serializer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ protected final void addFilterChain(String pattern, Key<? extends Filter> key) {
* For example, a path of '/my_private_resource/**' to 'filterConfig(AUTHC)' would require
* any resource under the path '/my_private_resource' would be processed through the {@link FormAuthenticationFilter}.
*
* @param pattern URL patter to be mapped to a FilterConfig, e.g. '/my_private-path/**'
* @param pattern URL pattern to be mapped to a FilterConfig, e.g. '/my_private-path/**'
* @param filterConfigs FilterConfiguration representing the Filter
* and config to be used when processing resources on <code>pattern</code>.
* @since 1.4
Expand Down
Loading