integrations/rest-management/rest-management/src/main/java/org/apache/aries/jax/rs/rest/management/internal/FrameworkServicesResource.java [80:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Response services(
        @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"}))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



integrations/rest-management/rest-management/src/main/java/org/apache/aries/jax/rs/rest/management/internal/FrameworkServicesRepresentationsResource.java [79:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Response serviceDTOs(
        @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"}))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



