/*
* Copyright (c) 2013, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.server.internal;
import java.lang.annotation.Annotation;
import java.util.List;
import jakarta.ws.rs.container.ContainerRequestFilter;
import jakarta.ws.rs.container.ContainerResponseFilter;
import jakarta.ws.rs.container.DynamicFeature;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.ReaderInterceptor;
import jakarta.ws.rs.ext.WriterInterceptor;
import org.glassfish.jersey.internal.inject.Providers;
import org.glassfish.jersey.model.internal.RankedComparator;
import org.glassfish.jersey.model.internal.RankedProvider;
Injectable encapsulating class containing processing providers like filters, interceptors,
name bound providers, dynamic features.
Author: Miroslav Fuksa
/**
* Injectable encapsulating class containing processing providers like filters, interceptors,
* name bound providers, dynamic features.
*
* @author Miroslav Fuksa
*/
public class ProcessingProviders {
private final MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerRequestFilter>> nameBoundRequestFilters;
private final MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerResponseFilter>> nameBoundResponseFilters;
private final MultivaluedMap<Class<? extends Annotation>, RankedProvider<ReaderInterceptor>> nameBoundReaderInterceptors;
private final MultivaluedMap<Class<? extends Annotation>, RankedProvider<WriterInterceptor>> nameBoundWriterInterceptors;
private final MultivaluedMap<RankedProvider<ContainerRequestFilter>, Class<? extends Annotation>>
nameBoundRequestFiltersInverse;
private final MultivaluedMap<RankedProvider<ContainerResponseFilter>, Class<? extends Annotation>>
nameBoundResponseFiltersInverse;
private final MultivaluedMap<RankedProvider<ReaderInterceptor>, Class<? extends Annotation>>
nameBoundReaderInterceptorsInverse;
private final MultivaluedMap<RankedProvider<WriterInterceptor>, Class<? extends Annotation>>
nameBoundWriterInterceptorsInverse;
private final Iterable<RankedProvider<ContainerRequestFilter>> globalRequestFilters;
private final Iterable<ContainerRequestFilter> sortedGlobalRequestFilters;
private final List<RankedProvider<ContainerRequestFilter>> preMatchFilters;
private final Iterable<RankedProvider<ContainerResponseFilter>> globalResponseFilters;
private final Iterable<ContainerResponseFilter> sortedGlobalResponseFilters;
private final Iterable<RankedProvider<ReaderInterceptor>> globalReaderInterceptors;
private final Iterable<ReaderInterceptor> sortedGlobalReaderInterceptors;
private final Iterable<RankedProvider<WriterInterceptor>> globalWriterInterceptors;
private final Iterable<WriterInterceptor> sortedGlobalWriterInterceptors;
private final Iterable<DynamicFeature> dynamicFeatures;
Creates new instance of the processing providers.
Params: - nameBoundRequestFilters – Name bound
request filters
. - nameBoundRequestFiltersInverse – Inverse map with name bound
request filters
. - nameBoundResponseFilters – Name bound
response filters
. - nameBoundResponseFiltersInverse – Inverse map with name bound
response filters
. - nameBoundReaderInterceptors – Name bound
reader interceptors
. - nameBoundReaderInterceptorsInverse – Inverse map with name bound
reader interceptors
. - nameBoundWriterInterceptors – Name bound
writer interceptors
. - nameBoundWriterInterceptorsInverse – Inverse map with name bound
writer interceptors
. - globalRequestFilters – Global
request filters
. - preMatchFilters –
Pre-matching
request filters
. - globalResponseFilters – Global
response filters
. - globalReaderInterceptors – Global
reader interceptors
. - globalWriterInterceptors – Global
writer interceptors
. - dynamicFeatures –
Dynamic features
.
/**
* Creates new instance of the processing providers.
*
* @param nameBoundRequestFilters Name bound {@link ContainerRequestFilter request filters}.
* @param nameBoundRequestFiltersInverse Inverse map with name bound {@link ContainerRequestFilter request filters}.
* @param nameBoundResponseFilters Name bound {@link ContainerResponseFilter response filters}.
* @param nameBoundResponseFiltersInverse Inverse map with name bound {@link ContainerResponseFilter response filters}.
* @param nameBoundReaderInterceptors Name bound {@link ReaderInterceptor reader interceptors}.
* @param nameBoundReaderInterceptorsInverse Inverse map with name bound {@link ReaderInterceptor reader interceptors}.
* @param nameBoundWriterInterceptors Name bound {@link WriterInterceptor writer interceptors}.
* @param nameBoundWriterInterceptorsInverse Inverse map with name bound {@link WriterInterceptor writer interceptors}.
* @param globalRequestFilters Global {@link ContainerRequestFilter request filters}.
* @param preMatchFilters {@link jakarta.ws.rs.container.PreMatching Pre-matching}
* {@link ContainerRequestFilter request filters}.
* @param globalResponseFilters Global {@link ContainerResponseFilter response filters}.
* @param globalReaderInterceptors Global {@link ReaderInterceptor reader interceptors}.
* @param globalWriterInterceptors Global {@link WriterInterceptor writer interceptors}.
* @param dynamicFeatures {@link DynamicFeature Dynamic features}.
*/
public ProcessingProviders(
MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerRequestFilter>> nameBoundRequestFilters,
MultivaluedMap<RankedProvider<ContainerRequestFilter>, Class<? extends Annotation>> nameBoundRequestFiltersInverse,
MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerResponseFilter>> nameBoundResponseFilters,
MultivaluedMap<RankedProvider<ContainerResponseFilter>, Class<? extends Annotation>> nameBoundResponseFiltersInverse,
MultivaluedMap<Class<? extends Annotation>, RankedProvider<ReaderInterceptor>> nameBoundReaderInterceptors,
MultivaluedMap<RankedProvider<ReaderInterceptor>, Class<? extends Annotation>> nameBoundReaderInterceptorsInverse,
MultivaluedMap<Class<? extends Annotation>, RankedProvider<WriterInterceptor>> nameBoundWriterInterceptors,
MultivaluedMap<RankedProvider<WriterInterceptor>, Class<? extends Annotation>> nameBoundWriterInterceptorsInverse,
Iterable<RankedProvider<ContainerRequestFilter>> globalRequestFilters,
List<RankedProvider<ContainerRequestFilter>> preMatchFilters,
Iterable<RankedProvider<ContainerResponseFilter>> globalResponseFilters,
Iterable<RankedProvider<ReaderInterceptor>> globalReaderInterceptors,
Iterable<RankedProvider<WriterInterceptor>> globalWriterInterceptors,
Iterable<DynamicFeature> dynamicFeatures) {
this.nameBoundReaderInterceptors = nameBoundReaderInterceptors;
this.nameBoundReaderInterceptorsInverse = nameBoundReaderInterceptorsInverse;
this.nameBoundRequestFilters = nameBoundRequestFilters;
this.nameBoundRequestFiltersInverse = nameBoundRequestFiltersInverse;
this.nameBoundResponseFilters = nameBoundResponseFilters;
this.nameBoundResponseFiltersInverse = nameBoundResponseFiltersInverse;
this.nameBoundWriterInterceptors = nameBoundWriterInterceptors;
this.nameBoundWriterInterceptorsInverse = nameBoundWriterInterceptorsInverse;
this.globalRequestFilters = globalRequestFilters;
this.preMatchFilters = preMatchFilters;
this.globalResponseFilters = globalResponseFilters;
this.globalReaderInterceptors = globalReaderInterceptors;
this.globalWriterInterceptors = globalWriterInterceptors;
this.dynamicFeatures = dynamicFeatures;
this.sortedGlobalReaderInterceptors = Providers.sortRankedProviders(new RankedComparator<>(), globalReaderInterceptors);
this.sortedGlobalWriterInterceptors = Providers.sortRankedProviders(new RankedComparator<>(), globalWriterInterceptors);
this.sortedGlobalRequestFilters = Providers.sortRankedProviders(new RankedComparator<>(), globalRequestFilters);
this.sortedGlobalResponseFilters = Providers.sortRankedProviders(new RankedComparator<>(), globalResponseFilters);
}
Get name bound request filters.
Returns: Name bound request filter
map. Keys are request filters and values are name bound annotations
attached to these filters.
/**
* Get name bound request filters.
*
* @return Name bound {@link ContainerRequestFilter request filter} map. Keys are request filters and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these filters.
*/
public MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerRequestFilter>> getNameBoundRequestFilters() {
return nameBoundRequestFilters;
}
Get name bound request filter inverse map.
Returns: Name bound request filter
map. Keys are request filters and values are name bound annotations
attached to these filters.
/**
* Get name bound request filter inverse map.
*
* @return Name bound {@link ContainerRequestFilter request filter} map. Keys are request filters and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these filters.
*/
public
MultivaluedMap<RankedProvider<ContainerRequestFilter>, Class<? extends Annotation>> getNameBoundRequestFiltersInverse() {
return nameBoundRequestFiltersInverse;
}
Get name bound response filters.
Returns: Name bound response filter
map. Keys are response filters and values are name bound annotations
attached to these filters.
/**
* Get name bound response filters.
*
* @return Name bound {@link ContainerResponseFilter response filter} map. Keys are response filters and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these filters.
*/
public MultivaluedMap<Class<? extends Annotation>, RankedProvider<ContainerResponseFilter>> getNameBoundResponseFilters() {
return nameBoundResponseFilters;
}
Get name bound response filter inverse map.
Returns: Name bound response filter
map. Keys are response filters and values are name bound annotations
attached to these filters.
/**
* Get name bound response filter inverse map.
*
* @return Name bound {@link ContainerRequestFilter response filter} map. Keys are response filters and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these filters.
*/
public
MultivaluedMap<RankedProvider<ContainerResponseFilter>, Class<? extends Annotation>> getNameBoundResponseFiltersInverse() {
return nameBoundResponseFiltersInverse;
}
Get name bound reader interceptor map.
Returns: Returns Name bound reader interceptor
map. Keys are name
bound annotations
and values are providers which are annotated with these annotations.
/**
* Get name bound reader interceptor map.
*
* @return Returns Name bound {@link ReaderInterceptor reader interceptor} map. Keys are {@link jakarta.ws.rs.NameBinding name
* bound annotations} and values are providers which are annotated with these annotations.
*/
public MultivaluedMap<Class<? extends Annotation>, RankedProvider<ReaderInterceptor>> getNameBoundReaderInterceptors() {
return nameBoundReaderInterceptors;
}
Get name bound reader interceptor inverse map.
Returns: Name bound reader interceptor
map. Keys are reader interceptors and values are name bound annotations
attached to these interceptors.
/**
* Get name bound reader interceptor inverse map.
*
* @return Name bound {@link ReaderInterceptor reader interceptor} map. Keys are reader interceptors and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these interceptors.
*/
public
MultivaluedMap<RankedProvider<ReaderInterceptor>, Class<? extends Annotation>> getNameBoundReaderInterceptorsInverse() {
return nameBoundReaderInterceptorsInverse;
}
Get name bound writer interceptor map.
Returns: Returns Name bound writer interceptor
map. Keys are name
bound annotations
and values are interceptors which are annotated with these annotations.
/**
* Get name bound writer interceptor map.
*
* @return Returns Name bound {@link WriterInterceptor writer interceptor} map. Keys are {@link jakarta.ws.rs.NameBinding name
* bound annotations} and values are interceptors which are annotated with these annotations.
*/
public MultivaluedMap<Class<? extends Annotation>, RankedProvider<WriterInterceptor>> getNameBoundWriterInterceptors() {
return nameBoundWriterInterceptors;
}
Get name bound writer interceptor inverse map.
Returns: Name bound writer interceptor
map. Keys are reader interceptors and values are name bound annotations
attached to these interceptors.
/**
* Get name bound writer interceptor inverse map.
*
* @return Name bound {@link WriterInterceptor writer interceptor} map. Keys are reader interceptors and
* values are {@link jakarta.ws.rs.NameBinding name bound annotations} attached to these interceptors.
*/
public
MultivaluedMap<RankedProvider<WriterInterceptor>, Class<? extends Annotation>> getNameBoundWriterInterceptorsInverse() {
return nameBoundWriterInterceptorsInverse;
}
Get global request filters.
Returns: Global request filter ranked providers.
/**
* Get global request filters.
*
* @return Global request filter ranked providers.
*/
public Iterable<RankedProvider<ContainerRequestFilter>> getGlobalRequestFilters() {
return globalRequestFilters;
}
Get global response filters.
Returns: Global response filter ranked providers.
/**
* Get global response filters.
*
* @return Global response filter ranked providers.
*/
public Iterable<RankedProvider<ContainerResponseFilter>> getGlobalResponseFilters() {
return globalResponseFilters;
}
Get global request filters sorted by priority.
Returns: Sorted global request filters.
/**
* Get global request filters sorted by priority.
*
* @return Sorted global request filters.
*/
public Iterable<ContainerRequestFilter> getSortedGlobalRequestFilters() {
return sortedGlobalRequestFilters;
}
Get global response filters sorted by priority.
Returns: Sorted global response filters.
/**
* Get global response filters sorted by priority.
*
* @return Sorted global response filters.
*/
public Iterable<ContainerResponseFilter> getSortedGlobalResponseFilters() {
return sortedGlobalResponseFilters;
}
Get global reader interceptors.
Returns: Global reader interceptors ranked providers.
/**
* Get global reader interceptors.
*
* @return Global reader interceptors ranked providers.
*/
public Iterable<RankedProvider<ReaderInterceptor>> getGlobalReaderInterceptors() {
return globalReaderInterceptors;
}
Get global writer interceptors.
Returns: Global writer interceptors ranked providers.
/**
* Get global writer interceptors.
*
* @return Global writer interceptors ranked providers.
*/
public Iterable<RankedProvider<WriterInterceptor>> getGlobalWriterInterceptors() {
return globalWriterInterceptors;
}
Get global reader interceptors sorted by priority.
Returns: Global reader interceptors.
/**
* Get global reader interceptors sorted by priority.
*
* @return Global reader interceptors.
*/
public Iterable<ReaderInterceptor> getSortedGlobalReaderInterceptors() {
return sortedGlobalReaderInterceptors;
}
Get global writer interceptors sorted by priority.
Returns: Global writer interceptors.
/**
* Get global writer interceptors sorted by priority.
*
* @return Global writer interceptors.
*/
public Iterable<WriterInterceptor> getSortedGlobalWriterInterceptors() {
return sortedGlobalWriterInterceptors;
}
Get dynamic features.
Returns: Dynamic features.
/**
* Get dynamic features.
*
* @return Dynamic features.
*/
public Iterable<DynamicFeature> getDynamicFeatures() {
return dynamicFeatures;
}
Get pre-matching
request filters. Returns: Pre-matching request filter ranked providers.
/**
* Get {@link jakarta.ws.rs.container.PreMatching pre-matching} request filters.
* @return Pre-matching request filter ranked providers.
*/
public List<RankedProvider<ContainerRequestFilter>> getPreMatchFilters() {
return preMatchFilters;
}
}