All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.littleshoot.commom.xmpp.XmppUriFactory Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.littleshoot.commom.xmpp;

import java.net.URI;

/**
 * Factory for creating XMPP URIs from user IDs.
 */
public interface XmppUriFactory
    {

    /**
     * Creates a XMPP URI for the user with the specified ID.
     * 
     * @param id The ID of the user to create a XMPP URI for.
     * @return The URI for the user.
     */
    URI createXmppUri(String id);

    /**
     * Creates a XMPP URI for the user with the specified ID.
     * 
     * @param id The ID of the user to create a XMPP URI for.
     * @return The URI for the user.
     */
    URI createXmppUri(long id);

    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy