Package org.jivesoftware.openfire.net
Interface Bind2InlineHandler
- All Known Implementing Classes:
Bind2CarbonsHandler
public interface Bind2InlineHandler
Interface for plugins that handle inline elements in SASL2 bind2 requests.
-
Method Summary
Modifier and TypeMethodDescriptionGets the namespace this handler processes.booleanhandleElement(LocalClientSession session, org.dom4j.Element bound, org.dom4j.Element element) Process an inline element from a bind2 request.
-
Method Details
-
getNamespace
String getNamespace()Gets the namespace this handler processes.- Returns:
- The XML namespace URI this handler supports
-
handleElement
boolean handleElement(LocalClientSession session, org.dom4j.Element bound, org.dom4j.Element element) Process an inline element from a bind2 request.- Parameters:
bound- The "bound" element to add any output toelement- The DOM element to process- Returns:
- true if the element was handled successfully, false otherwise
-