Skip to content

Commit

Permalink
Merge branch '2.0.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed May 10, 2018
2 parents 36c7602 + fbf9744 commit 0b76fc8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,17 @@ public void setUrlPatterns(Collection<String> urlPatterns) {
}

/**
* Return a mutable collection of URL patterns that the filter will be registered
* against.
* Return a mutable collection of URL patterns, as defined in the Servlet
* specification, that the filter will be registered against.
* @return the URL patterns
*/
public Collection<String> getUrlPatterns() {
return this.urlPatterns;
}

/**
* Add URL patterns that the filter will be registered against.
* Add URL patterns, as defined in the Servlet specification, that the filter will be
* registered against.
* @param urlPatterns the URL patterns
*/
public void addUrlPatterns(String... urlPatterns) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,16 @@ public void setUrlMappings(Collection<String> urlMappings) {
}

/**
* Return a mutable collection of the URL mappings for the servlet.
* Return a mutable collection of the URL mappings, as defined in the Servlet
* specification, for the servlet.
* @return the urlMappings
*/
public Collection<String> getUrlMappings() {
return this.urlMappings;
}

/**
* Add URL mappings for the servlet.
* Add URL mappings, as defined in the Servlet specification, for the servlet.
* @param urlMappings the mappings to add
* @see #setUrlMappings(Collection)
*/
Expand Down

0 comments on commit 0b76fc8

Please sign in to comment.