Interface NamespaceEventChannel
-
- All Known Implementing Classes:
ClusterNode
public interface NamespaceEventChannel
Event channel used to transmit namespace registry operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
remapped(String oldPrefix, String newPrefix, String uri)
Called when a namespace has been remapped.void
setListener(NamespaceEventListener listener)
Set listener that will receive information about incoming, external namespace events.
-
-
-
Method Detail
-
remapped
void remapped(String oldPrefix, String newPrefix, String uri)
Called when a namespace has been remapped.- Parameters:
oldPrefix
- old prefix. ifnull
this is a fresh mappingnewPrefix
- new prefix. ifnull
this is an unmap operationuri
- uri to map prefix to
-
setListener
void setListener(NamespaceEventListener listener)
Set listener that will receive information about incoming, external namespace events.- Parameters:
listener
- namespace event listener
-
-