1
0
Fork 0
mirror of https://github.com/akullpp/awesome-java.git synced 2025-02-17 15:55:19 -05:00

Adds networking library urnlib

This library implements the a class for representing an Uniform Resource Name (URN). It implements parsing and serialization according to the constraints defined in [RFC 2141](https://tools.ietf.org/html/rfc2141). It's released on [Maven Central](http://search.maven.org/#artifactdetails|de.slub-dresden|urnlib|1.0.0|jar) and aims to serve as a network identifier handling library just like the native Java URL and URI classes.

I'm not entirely sure `Networking` is the proper category, but I also don't see any other category it might fit.
This commit is contained in:
Ralf Claussnitzer 2016-04-01 10:14:14 +02:00
parent 95764bfd6d
commit 24e119bc39

View file

@ -513,6 +513,7 @@ A curated list of awesome Java frameworks, libraries and software.
* [Nifty](https://github.com/facebook/nifty) - Implementation of Thrift clients and servers on Netty.
* [OkHttp](http://square.github.io/okhttp/) - HTTP+SPDY client.
* [Undertow](http://undertow.io/) - Web server providing both blocking and non-blocking APIs based on NIO. Used as a network layer in WildFly.
* [urnlib](https://github.com/slub/urnlib) - Java library for representing, parsing and encoding URNs as in RFC 2141.
## ORM