Resty icon indicating copy to clipboard operation
Resty copied to clipboard

Tiny REST client for Java and JSON.

Results 33 Resty issues
Sort by recently updated
recently updated
newest added

This pull request is focused on resolving occurrences of Sonar rule squid:ClassVariableVisibilityCheck - Class variable fields should not have public accessibility. You can find more information about the issue here:...

This pull request is focused on resolving occurrences of Sonar rule squid:S1854 - Dead stores should be removed. You can find more information about the issue here: https://dev.eclipse.org/sonar/rules/show/squid:S1854 Please let...

This pull request is focused on resolving occurrences of Sonar rule squid:S1197 - Array designators "[]" should be on the type, not the variable. You can find more information about...

This pull request is focused on resolving occurrences of Sonar rule squid:S1118 - Utility classes should not have public constructors. You can find more information about the issue here: https://dev.eclipse.org/sonar/rules/show/squid:S1118...

authenticate method is not working. There doesn't seem to be a testcase for authenticate.

What about gzip support in Resty?

It would be awesome if you could create Resty with a base url. ``` java Resty r = new Resty("http://localhost/myApi"); r.json("/users") ```

Resty currently has a dependency on javacc-4.1.jar which has classes in the root package. This causes a problem when used in an OSGI context where the construction of the manifest...

Hi, sometimes the content returned is a constant true/false. Since there is no way to set the content type for TextResource I've created the "toBoolean" method on JSONResource that simply...

Haven't looked too much into this, but it looks like you can POST multipart form data, but not PUT it. Can we just change the `Replacement` class to accept `AbstractContent`...