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
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'cookie-meringue.restful_interceptor'
version = '1.0.2'
version = '1.0.3'

java {
sourceCompatibility = '17'
Expand All @@ -35,7 +35,7 @@ publishing {
maven(MavenPublication) {
groupId = 'cookie-meringue.restful_interceptor'
artifactId = 'restful_interceptor'
version = '1.0.2'
version = '1.0.3'

from components.java
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected boolean doInternal(HttpServletRequest request, HttpServletResponse res
* This method merges the provided RestfulPatterns into the existing collection.
*
* @param restfulPatterns the RestfulPatterns to be added
* @since Upcoming
* @since 1.0.2
*/
void addRestfulPatterns(final RestfulPatterns restfulPatterns) {
this.restfulPatterns.addAll(restfulPatterns);
Expand All @@ -69,7 +69,7 @@ void addRestfulPatterns(final RestfulPatterns restfulPatterns) {
* This method merges the provided RestfulPatterns into the existing collection.
*
* @param excludePatterns the RestfulPatterns to be added
* @since Upcoming
* @since 1.0.2
*/
void addExcludePatterns(final RestfulPatterns excludePatterns) {
this.excludePatterns.addAll(excludePatterns);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public RestInterceptorRegistration addRestfulPatterns(Collection<RestfulPattern>
*
* @param restfulPatterns the RestfulPatterns to be registered
* @return this RestInterceptorRegistration instance for method chaining
* @since Upcoming
* @since 1.0.2
*/
public RestInterceptorRegistration addRestfulPatterns(RestfulPatterns restfulPatterns) {
restInterceptor.addRestfulPatterns(restfulPatterns);
Expand Down Expand Up @@ -76,7 +76,7 @@ public RestInterceptorRegistration excludeRestfulPatterns(Collection<RestfulPatt
*
* @param excludePatterns the RestfulPatterns to be registered
* @return this RestInterceptorRegistration instance for method chaining
* @since Upcoming
* @since 1.0.2
*/
public RestInterceptorRegistration excludeRestfulPatterns(RestfulPatterns excludePatterns) {
restInterceptor.addExcludePatterns(excludePatterns);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Encapsulates a Collection of RestfulPattern and provides apis.
*
* @author cookie-meringue
* @since Upcoming
* @since 1.0.2
*/
public final class RestfulPatterns {

Expand Down Expand Up @@ -60,7 +60,7 @@ boolean noneMatches(final HttpServletRequest request) {
*
* @param request the HttpServletRequest to be checked against the patterns
* @return {@code true} if any patterns match the request, otherwise {@code false}
* @since Upcoming
* @since 1.0.2
*/
boolean anyMatches(final HttpServletRequest request) {
return values.stream()
Expand Down
Loading