Skip to content
Open
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 @@ -33,7 +33,7 @@ public interface ExposureConfigurer {
*/
interface AggregateResourceHttpMethodsFilter extends ComposableFilter<ResourceMetadata, ConfigurableHttpMethods> {

ConfigurableHttpMethods filter(ResourceMetadata metdata, ConfigurableHttpMethods httpMethods);
ConfigurableHttpMethods filter(ResourceMetadata metadata, ConfigurableHttpMethods httpMethods);

/**
* Returns a default filter that just returns all {@link HttpMethods} as is, i.e. does not apply any filtering.
Expand All @@ -53,7 +53,7 @@ static AggregateResourceHttpMethodsFilter none() {
interface AssociationResourceHttpMethodsFilter
extends ComposableFilter<PropertyAwareResourceMapping, ConfigurableHttpMethods> {

ConfigurableHttpMethods filter(PropertyAwareResourceMapping metdata, ConfigurableHttpMethods httpMethods);
ConfigurableHttpMethods filter(PropertyAwareResourceMapping metadata, ConfigurableHttpMethods httpMethods);

/**
* Returns a default filter that just returns all {@link HttpMethods} as is, i.e. does not apply any filtering.
Expand Down