Package rocks.xmpp.core
Interface XmppContext
-
- All Known Implementing Classes:
CoreContext
,ExtensionsContext
,WebSocketContext
public interface XmppContext
Defines classes to be bound to the JAXBContext. Implementations of this interface can be found by usingServiceLoader
and by placing a file calledrocks.xmpp.core.XmppContext
containing the full qualified class names of the implementations toMETA-INF/services
.Implementations must have a public no-arg default constructor.
- See Also:
XmppUtils.createContext(Iterable)
,ServiceLoader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<Class<?>>
getClasses()
Gets the classes to be bound to theJAXBContext
.
-