jcabi / jcabi-urn

Java URN as in RFC 2141

Home Page:http://urn.jcabi.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EO principles respected here DevOps By Rultor.com

mvn PDD status Maven Central Javadoc

More details are here: urn.jcabi.com

URN is an immutable implementation of a Uniform Resource Name (URN) according to RFC 2141:

import com.jcabi.urn.URN;
public class Main {
  public static void main(String[] args) {
    URN urn = new URN("urn:test:my-example");
    assert urn.nid().equals("test");
    assert urn.nss().equals("my-example");
  }
}

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice

About

Java URN as in RFC 2141

http://urn.jcabi.com/

License:Other


Languages

Language:Java 100.0%