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

rocks.xmpp.core.server.ServerConfiguration Maven / Gradle / Ivy

Go to download

XMPP core functionality (TLS, SASL, resource binding, stanzas, errors) for servers.

The newest version!
package rocks.xmpp.core.server;

import java.util.Locale;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

import rocks.xmpp.addr.Jid;

/**
 * @author Christian Schudt
 */
public interface ServerConfiguration {

    JAXBContext getJAXBContext();

    Marshaller getMarshaller();

    Unmarshaller getUnmarshaller(Locale locale);

    int getPort();

    Jid getDomain();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy