
rocks.xmpp.core.server.ServerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmpp-core-server Show documentation
Show all versions of xmpp-core-server Show documentation
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