check-style

Provides checkstyle information for the project

License

License

GroupId

GroupId

com.pressassociation.partial-response
ArtifactId

ArtifactId

check-style
Last Version

Last Version

1
Release Date

Release Date

Type

Type

jar
Description

Description

check-style
Provides checkstyle information for the project
Project URL

Project URL

https://github.com/PressAssociation/partial-response
Source Code Management

Source Code Management

https://github.com/PressAssociation/partial-response

Download check-style

How to add to project

<!-- https://jarcasting.com/artifacts/com.pressassociation.partial-response/check-style/ -->
<dependency>
    <groupId>com.pressassociation.partial-response</groupId>
    <artifactId>check-style</artifactId>
    <version>1</version>
</dependency>
// https://jarcasting.com/artifacts/com.pressassociation.partial-response/check-style/
implementation 'com.pressassociation.partial-response:check-style:1'
// https://jarcasting.com/artifacts/com.pressassociation.partial-response/check-style/
implementation ("com.pressassociation.partial-response:check-style:1")
'com.pressassociation.partial-response:check-style:jar:1'
<dependency org="com.pressassociation.partial-response" name="check-style" rev="1">
  <artifact name="check-style" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.pressassociation.partial-response', module='check-style', version='1')
)
libraryDependencies += "com.pressassociation.partial-response" % "check-style" % "1"
[com.pressassociation.partial-response/check-style "1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Partial Response

Build Status

This project provides a library to help with the processing and implementation of partial response in an API.

The core library consists of parsers, AST, visitors and matcher for working with a partial response value. Higher level functionality may be added over time including http filters for xml and json to post process your responses for inclusion in the partial response.

Usage

To use this in your Maven project simply include the dependency

<dependency>
  <groupId>com.pressassociation.partial-response</groupId>
  <artifactId>matcher</artifactId>
  <version>1.0</version>
</dependency>

This will give you the Matcher class which is the core concept for partial response. The Matcher gives you a way to parse and match against a partial response pattern.

Matcher matcher = Matcher.of("name,address,spouse(name,address),children/*");

// matches all of these Leafs
assertTrue(matcher.matches("/name"));
assertTrue(matcher.matches("/address"));
assertTrue(matcher.matches("/address/houseNumber"));
assertTrue(matcher.matches("/spouse/name"));
assertTrue(matcher.matches("/spouse/address"));
assertTrue(matcher.matches("/children"));
assertTrue(matcher.matches("/children/any/path"));

// doesn't match any of these
assertFalse(matcher.matches("/unknown"));
assertFalse(matcher.matches("/spouse/children"));
// Note: spouse as a leaf is not included, only certain sub properties are
assertFalse(matcher.matches("/spouse"));

Out of the box

This project consists of a number of sub-projects to cover different use cases for partial-response.

  • Matcher - contains the core pattern parsers and Matcher class. This is the low level functionality behind all partial response support
  • Jackson JSON Filter - Partial response filter for Jackson JSON serialisation.
  • JAX-RS Jackson JSON Filter - JAX-RS response filter for applying partial-response to JAX-RS based REST API responses.
com.pressassociation.partial-response

PA Media Group (formerly Press Association)

We have rebranded, please visit: https://github.com/pa-media-group

Versions

Version
1