Package rocks.xmpp.websocket.codec
Class XmppWebSocketDecoder.UserProperties
- java.lang.Object
-
- rocks.xmpp.websocket.codec.XmppWebSocketDecoder.UserProperties
-
- Enclosing class:
- XmppWebSocketDecoder
public static final class XmppWebSocketDecoder.UserProperties extends Object
User properties for usage inEndpointConfig.getUserProperties()
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONNECTION
static String
ON_READ
The property to set the read callback.static String
SESSION
static String
UNMARSHALLER
The property key to set the unmarshaller.static String
XML_INPUT_FACTORY
The property key to provide an optionalXMLInputFactory
.
-
-
-
Field Detail
-
UNMARSHALLER
public static final String UNMARSHALLER
The property key to set the unmarshaller.The value must be a
java.util.function.Supplier<Unmarshaller>
.- See Also:
- Constant Field Values
-
XML_INPUT_FACTORY
public static final String XML_INPUT_FACTORY
The property key to provide an optionalXMLInputFactory
.- See Also:
- Constant Field Values
-
ON_READ
public static final String ON_READ
The property to set the read callback.The value must be a
java.util.function.BiConsumer<String, StreamElement>
.- See Also:
- Constant Field Values
-
CONNECTION
public static final String CONNECTION
- See Also:
- Constant Field Values
-
SESSION
public static final String SESSION
- See Also:
- Constant Field Values
-
-