Class FindHandler

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String parentURI  
      protected java.lang.String targetURI  
    • Constructor Summary

      Constructors 
      Constructor Description
      FindHandler​(java.lang.String parentURI)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getTargetURI()  
      void noteDiscoveredBase​(java.lang.String rawURL)
      Inform the world of a new base HREF.
      void noteDiscoveredLink​(java.lang.String rawURL)
      Inform the world of a discovered link.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • parentURI

        protected java.lang.String parentURI
      • targetURI

        protected java.lang.String targetURI
    • Constructor Detail

      • FindHandler

        public FindHandler​(java.lang.String parentURI)
    • Method Detail

      • noteDiscoveredBase

        public void noteDiscoveredBase​(java.lang.String rawURL)
                                throws org.apache.manifoldcf.core.interfaces.ManifoldCFException
        Description copied from interface: IDiscoveredLinkHandler
        Inform the world of a new base HREF.
        Specified by:
        noteDiscoveredBase in interface IDiscoveredLinkHandler
        Parameters:
        rawURL - is the new base HREF, in raw form. This may be relative, malformed, etc.
        Throws:
        org.apache.manifoldcf.core.interfaces.ManifoldCFException
      • noteDiscoveredLink

        public void noteDiscoveredLink​(java.lang.String rawURL)
                                throws org.apache.manifoldcf.core.interfaces.ManifoldCFException
        Inform the world of a discovered link.
        Specified by:
        noteDiscoveredLink in interface IDiscoveredLinkHandler
        Parameters:
        rawURL - is the raw discovered url. This may be relative, malformed, or otherwise unsuitable for use until final form is acheived.
        Throws:
        org.apache.manifoldcf.core.interfaces.ManifoldCFException
      • getTargetURI

        public java.lang.String getTargetURI()