![JAR search and dependency download from the Maven repository](/logo.png)
org.openid4java.discovery.html.HtmlParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openid4java-shaded Show documentation
Show all versions of openid4java-shaded Show documentation
openid4java (Third party dependencies shaded)
/*
* Copyright 2006-2008 Sxip Identity Corporation
*/
package org.openid4java.discovery.html;
import org.openid4java.discovery.DiscoveryException;
/**
* Html parser.
*
* @author Sutra Zhou
* @since 0.9.4
* @see #parseHtml(String, HtmlResult)
*/
public interface HtmlParser
{
/**
* Parses the HTML data and stores in the result the discovered openid
* information.
*
* @param htmlData
* HTML data obtained from the URL identifier.
* @param result
* The HTML result.
* @throws DiscoveryException
*/
void parseHtml(String htmlData, HtmlResult result) throws DiscoveryException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy