Interface NamespaceListener
-
public interface NamespaceListenerDeprecated.https://issues.apache.org/jira/browse/JCR-1700Receives notifications when a namespace mapping changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidnamespaceAdded(java.lang.String prefix, java.lang.String uri)Deprecated.Notifies the listeners that a new namespaceurihas been added and mapped toprefix.voidnamespaceRemapped(java.lang.String oldPrefix, java.lang.String newPrefix, java.lang.String uri)Deprecated.Notifies the listeners that an existing namespaceurihas been re-mapped fromoldPrefixtonewPrefix.voidnamespaceRemoved(java.lang.String uri)Deprecated.Notifies the listeners that the namespace with the given uri has been unregistered.
-
-
-
Method Detail
-
namespaceRemapped
void namespaceRemapped(java.lang.String oldPrefix, java.lang.String newPrefix, java.lang.String uri)Deprecated.Notifies the listeners that an existing namespaceurihas been re-mapped fromoldPrefixtonewPrefix.- Parameters:
oldPrefix- the old prefix.newPrefix- the new prefix.uri- the associated namespace uri.
-
namespaceAdded
void namespaceAdded(java.lang.String prefix, java.lang.String uri)Deprecated.Notifies the listeners that a new namespaceurihas been added and mapped toprefix.- Parameters:
prefix- the prefix.uri- the namespace uri.
-
namespaceRemoved
void namespaceRemoved(java.lang.String uri)
Deprecated.Notifies the listeners that the namespace with the given uri has been unregistered.- Parameters:
uri- the namespace uri.
-
-