* @param dictionary the list to which the handlers should be appended.
*/
private void addPubsubOwnerHandlers(ComponentStanzaProcessor dictionary) {
ArrayList<StanzaHandler> pubsubOwnerHandlers = new ArrayList<StanzaHandler>();
pubsubOwnerHandlers.add(new PubSubOwnerConfigureNodeHandler(serviceConfiguration));
pubsubOwnerHandlers.add(new PubSubOwnerDeleteNodeHandler(serviceConfiguration));
dictionary
.addDictionary(new NamespaceHandlerDictionary(NamespaceURIs.XEP0060_PUBSUB_OWNER, pubsubOwnerHandlers));
}