Package rocks.xmpp.websocket.codec
Class XmppWebSocketEncoder.UserProperties
- java.lang.Object
-
- rocks.xmpp.websocket.codec.XmppWebSocketEncoder.UserProperties
-
- Enclosing class:
- XmppWebSocketEncoder
public static final class XmppWebSocketEncoder.UserProperties extends Object
User properties for usage inEndpointConfig.getUserProperties()
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONNECTION
static String
MARSHALLER
The property key to provide the requiredMarshaller
.static String
ON_WRITE
The property to set an optional write callback.static String
SESSION
static String
XML_OUTPUT_FACTORY
The property key to provide an optionalXMLOutputFactory
.
-
-
-
Field Detail
-
MARSHALLER
public static final String MARSHALLER
The property key to provide the requiredMarshaller
. The value must be ajava.util.function.Supplier<Marshaller>
.- See Also:
- Constant Field Values
-
XML_OUTPUT_FACTORY
public static final String XML_OUTPUT_FACTORY
The property key to provide an optionalXMLOutputFactory
.- See Also:
- Constant Field Values
-
ON_WRITE
public static final String ON_WRITE
The property to set an optional write callback. The value must be ajava.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
-
-