ge0rg / jxmpp

An Open Source XMPP Base Library written in Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JXMPP

Build Status Project Stats Coverage Status

About

JXMPP is an Open Source Java base library for XMPP. It provides often used functionality needed to build an XMPP stack.

Resources

JXMPP Components

JXMPP consists of several components, you can use all of them or decide to pick only the ones that suit your needs.

jxmpp-core

Provides core functionality most software that interacts with XMPP requires. Highlights include

XmppDateTime

A utility to parse date/time Strings in the various formats used within XMPP to a Date instance in a efficient manner without depending on third party libraries

XmppStringUtils

Contains various String operations often needed when using XMPP

XmppStringPrepUtil

A utility to apply the various string transformation profiles required by XMPP in a efficient manner. Does also utilize a Cache for maximum efficiency.

jxmpp-jid

Abstracts XMPP JIDs with Java classes, performing string preparation and validation. Although JIDs are split over five classes, jxmpp-jid is designed so that you often only need to use the simple Jid type. It therefore combines the simplicity of the single JID class approach, where JIDs are represented by a single class no matter what kind of JID they are, which the expressiveness of the JID class hierarchy approach, where you can express in a method signature the required JID type (e.g. foo(BareJid bareJid).

         ,______Jid______,
        /       / \       \
EntityFullJid  /   \     DomainFullJid
              /     \
     EntityBareJid  DomainBareJid

There are also the BareJid, FullJid, EntityJid and DomainJid interfaces, which are implemented by the Jid types as follows:

         BareJid                            FullJid
         /    \                             /   \
        /      \                           /     \
EntityBareJid  DomainBareJid     EntityFullJid  DomainFullJid

        EntityJid                         DomainJid
         /    \                             /   \
        /      \                           /     \
EntityBareJid  EntityFullJid     DomainBareJid  DomainFullJid

Jid instances are created with the help of the JidCreate utility:

Jid jid = JidCreate.from("foo@bar.example");

jxmpp-stringprep-libidn

Perform XMPP's StringPrep with the help of libidn.

Use LibIdnXmppStringprep.setup() to make XmppStringPrepUtil use libidn.

jxmpp-util-cache

Provides a lightweight and efficient Cache without external dependencies used by various JXMPP Components.

About

An Open Source XMPP Base Library written in Java

License:Apache License 2.0


Languages

Language:Java 99.5%Language:Shell 0.3%Language:Scala 0.2%