- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.openid4java.discovery.yadis.YadisHtmlParser.getHtmlMeta()
方法的一些代码示例,展示了YadisHtmlParser.getHtmlMeta()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YadisHtmlParser.getHtmlMeta()
方法的具体详情如下:
包路径:org.openid4java.discovery.yadis.YadisHtmlParser
类名称:YadisHtmlParser
方法名:getHtmlMeta
[英]Parses the HTML input stream and scans for the Yadis XRDS location in the HTML HEAD Meta tags.
[中]解析HTML输入流并扫描HTML头元标记中的Yadis XRD位置。
代码示例来源:origin: org.openid4java/openid4java-nodeps
/**
* Parses the HTML input stream and scans for the Yadis XRDS location
* in the HTML HEAD Meta tags.
*
* @param input input data stream
* @return String the XRDS location URL, or null if not found
* @throws YadisException on parsing errors or Yadis protocal violations
*/
private String getHtmlMeta(String input) throws YadisException
{
String xrdsLocation;
if (input == null)
throw new YadisException("Cannot download HTML message",
OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
if (DEBUG)
{
_log.debug("input:\n" + input);
_log.debug("xrdsLocation: " + xrdsLocation);
}
return xrdsLocation;
}
代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps
/**
* Parses the HTML input stream and scans for the Yadis XRDS location
* in the HTML HEAD Meta tags.
*
* @param input input data stream
* @return String the XRDS location URL, or null if not found
* @throws YadisException on parsing errors or Yadis protocal violations
*/
private String getHtmlMeta(String input) throws YadisException {
String xrdsLocation;
if (input == null) {
throw new YadisException("Cannot download HTML message",
OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
}
xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
if (DEBUG) {
_log.debug("input:\n" + input);
_log.debug("xrdsLocation: " + xrdsLocation);
}
return xrdsLocation;
}
代码示例来源:origin: org.openid4java/openid4java
/**
* Parses the HTML input stream and scans for the Yadis XRDS location
* in the HTML HEAD Meta tags.
*
* @param input input data stream
* @return String the XRDS location URL, or null if not found
* @throws YadisException on parsing errors or Yadis protocal violations
*/
private String getHtmlMeta(String input) throws YadisException
{
String xrdsLocation;
if (input == null)
throw new YadisException("Cannot download HTML message",
OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
if (DEBUG)
{
_log.debug("input:\n" + input);
_log.debug("xrdsLocation: " + xrdsLocation);
}
return xrdsLocation;
}
代码示例来源:origin: com.cloudbees/openid4java-shaded
/**
* Parses the HTML input stream and scans for the Yadis XRDS location
* in the HTML HEAD Meta tags.
*
* @param input input data stream
* @return String the XRDS location URL, or null if not found
* @throws YadisException on parsing errors or Yadis protocal violations
*/
private String getHtmlMeta(String input) throws YadisException
{
String xrdsLocation;
if (input == null)
throw new YadisException("Cannot download HTML message",
OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
if (DEBUG)
{
_log.debug("input:\n" + input);
_log.debug("xrdsLocation: " + xrdsLocation);
}
return xrdsLocation;
}
代码示例来源:origin: jbufu/openid4java
/**
* Parses the HTML input stream and scans for the Yadis XRDS location
* in the HTML HEAD Meta tags.
*
* @param input input data stream
* @return String the XRDS location URL, or null if not found
* @throws YadisException on parsing errors or Yadis protocal violations
*/
private String getHtmlMeta(String input) throws YadisException
{
String xrdsLocation;
if (input == null)
throw new YadisException("Cannot download HTML message",
OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
if (DEBUG)
{
_log.debug("input:\n" + input);
_log.debug("xrdsLocation: " + xrdsLocation);
}
return xrdsLocation;
}
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver类的一些代码示例,展示了YadisResolver类的具体用法。这些代码示例主要来源于Gi
本文整理了Java中org.openid4java.discovery.yadis.YadisException类的一些代码示例,展示了YadisException类的具体用法。这些代码示例主要来源于
本文整理了Java中org.openid4java.discovery.yadis.YadisHtmlParser类的一些代码示例,展示了YadisHtmlParser类的具体用法。这些代码示例主要来
本文整理了Java中org.openid4java.discovery.yadis.YadisUrl类的一些代码示例,展示了YadisUrl类的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中org.openid4java.discovery.yadis.YadisResult类的一些代码示例,展示了YadisResult类的具体用法。这些代码示例主要来源于Github
最近,我开始编写自己的 PHP OpenID 使用者类,以便更好地理解 openID。作为指南,我一直在引用 [LightOpenID 类][1]。在大多数情况下,我了解代码以及 OpenID 的工作
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.retrieveXrdsDocument()方法的一些代码示例,展示了YadisReso
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.discover()方法的一些代码示例,展示了YadisResolver.discove
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.retrieveXrdsLocation()方法的一些代码示例,展示了YadisReso
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.()方法的一些代码示例,展示了YadisResolver.()的具体用法。这些代码示例主
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.discoverRP()方法的一些代码示例,展示了YadisResolver.disco
本文整理了Java中org.openid4java.discovery.yadis.YadisResolver.getHtmlMeta()方法的一些代码示例,展示了YadisResolver.getH
本文整理了Java中org.openid4java.discovery.yadis.YadisException.getErrorCode()方法的一些代码示例,展示了YadisException.g
本文整理了Java中org.openid4java.discovery.yadis.YadisException.()方法的一些代码示例,展示了YadisException.()的具体用法。这些代码示
本文整理了Java中org.openid4java.discovery.yadis.YadisException.getMessage()方法的一些代码示例,展示了YadisException.get
本文整理了Java中org.openid4java.discovery.yadis.YadisHtmlParser.getHtmlMeta()方法的一些代码示例,展示了YadisHtmlParser.
本文整理了Java中org.openid4java.discovery.yadis.YadisUrl.()方法的一些代码示例,展示了YadisUrl.()的具体用法。这些代码示例主要来源于Github
本文整理了Java中org.openid4java.discovery.yadis.YadisUrl.urlFromString()方法的一些代码示例,展示了YadisUrl.urlFromStrin
本文整理了Java中org.openid4java.discovery.yadis.YadisUrl.getUrl()方法的一些代码示例,展示了YadisUrl.getUrl()的具体用法。这些代码示
本文整理了Java中org.openid4java.discovery.yadis.YadisResult.setYadisUrl()方法的一些代码示例,展示了YadisResult.setYadis
我是一名优秀的程序员,十分优秀!