integrations/rest-management/rest-management/src/main/java/org/apache/aries/jax/rs/rest/management/internal/FrameworkServicesRepresentationsResource.java [80:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Parameter(
            name = "filter",
            in = ParameterIn.QUERY,
            description = "A filter parameter whose value is a filter expression that follows the Core Specifications Framework Filter Syntax; see OSGi Core, Chapter 3.2.7 Filter Syntax. The filter is matched against the service attributes and only services that match are returned",
            examples = @ExampleObject(
                summary = "format: filter=<filter_string>",
                value = "filter=(&(osgi.vendor=Apache Aries)(objectClass=com.acme.Widget))"
            )
        )
        @QueryParam("filter") String filter,
        @Parameter(allowEmptyValue = true, description = "File extension", schema = @Schema(allowableValues = {".json", ".xml"}))
        @PathParam("ext") String ext) {

        Predicate<ServiceReferenceDTO> predicate = fromFilterQuery(filter);

        ResponseBuilder builder = Response.ok(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



integrations/rest-management/rest-management/src/main/java/org/apache/aries/jax/rs/rest/management/internal/FrameworkServicesResource.java [81:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Parameter(
            name = "filter",
            in = ParameterIn.QUERY,
            description = "A filter parameter whose value is a filter expression that follows the Core Specifications Framework Filter Syntax; see OSGi Core, Chapter 3.2.7 Filter Syntax. The filter is matched against the service attributes and only services that match are returned",
            examples = @ExampleObject(
                summary = "format: filter=<filter_string>",
                value = "filter=(&(osgi.vendor=Apache Aries)(objectClass=com.acme.Widget))"
            )
        )
        @QueryParam("filter") String filter,
        @Parameter(allowEmptyValue = true, description = "File extension", schema = @Schema(allowableValues = {".json", ".xml"}))
        @PathParam("ext") String ext) {

        Predicate<ServiceReferenceDTO> predicate = fromFilterQuery(filter);

        ResponseBuilder builder = Response.ok(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



