* @throws RegistryException if the operation failed.
*/
public static void registerHandlerForSymbolicLinks(RegistryContext context,
String path, String target, String author)
throws RegistryException {
SymLinkHandler handler = new SymLinkHandler();
handler.setMountPoint(path);
handler.setTargetPoint(target);
handler.setAuthor(author);
HandlerManager hm = context.getHandlerManager();
hm.addHandler(RegistryUtils.getMountingMethods(),
RegistryUtils.getMountingMatcher(path), handler,
HandlerLifecycleManager.TENANT_SPECIFIC_SYSTEM_HANDLER_PHASE);