org.openid4java.discovery.yadis.YadisHtmlParser类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中org.openid4java.discovery.yadis.YadisHtmlParser类的一些代码示例,展示了YadisHtmlParser类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YadisHtmlParser类的具体详情如下:
包路径:org.openid4java.discovery.yadis.YadisHtmlParser
类名称:YadisHtmlParser

YadisHtmlParser介绍

[英]Yadis parser.
[中]Yadis解析器。

代码示例

代码示例来源:origin: org.openid4java/openid4java-nodeps

  1. /**
  2. * Parses the HTML input stream and scans for the Yadis XRDS location
  3. * in the HTML HEAD Meta tags.
  4. *
  5. * @param input input data stream
  6. * @return String the XRDS location URL, or null if not found
  7. * @throws YadisException on parsing errors or Yadis protocal violations
  8. */
  9. private String getHtmlMeta(String input) throws YadisException
  10. {
  11. String xrdsLocation;
  12. if (input == null)
  13. throw new YadisException("Cannot download HTML message",
  14. OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
  15. xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
  16. if (DEBUG)
  17. {
  18. _log.debug("input:\n" + input);
  19. _log.debug("xrdsLocation: " + xrdsLocation);
  20. }
  21. return xrdsLocation;
  22. }

代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps

  1. /**
  2. * Parses the HTML input stream and scans for the Yadis XRDS location
  3. * in the HTML HEAD Meta tags.
  4. *
  5. * @param input input data stream
  6. * @return String the XRDS location URL, or null if not found
  7. * @throws YadisException on parsing errors or Yadis protocal violations
  8. */
  9. private String getHtmlMeta(String input) throws YadisException {
  10. String xrdsLocation;
  11. if (input == null) {
  12. throw new YadisException("Cannot download HTML message",
  13. OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
  14. }
  15. xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
  16. if (DEBUG) {
  17. _log.debug("input:\n" + input);
  18. _log.debug("xrdsLocation: " + xrdsLocation);
  19. }
  20. return xrdsLocation;
  21. }

代码示例来源:origin: org.openid4java/openid4java

  1. /**
  2. * Parses the HTML input stream and scans for the Yadis XRDS location
  3. * in the HTML HEAD Meta tags.
  4. *
  5. * @param input input data stream
  6. * @return String the XRDS location URL, or null if not found
  7. * @throws YadisException on parsing errors or Yadis protocal violations
  8. */
  9. private String getHtmlMeta(String input) throws YadisException
  10. {
  11. String xrdsLocation;
  12. if (input == null)
  13. throw new YadisException("Cannot download HTML message",
  14. OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
  15. xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
  16. if (DEBUG)
  17. {
  18. _log.debug("input:\n" + input);
  19. _log.debug("xrdsLocation: " + xrdsLocation);
  20. }
  21. return xrdsLocation;
  22. }

代码示例来源:origin: com.cloudbees/openid4java-shaded

  1. /**
  2. * Parses the HTML input stream and scans for the Yadis XRDS location
  3. * in the HTML HEAD Meta tags.
  4. *
  5. * @param input input data stream
  6. * @return String the XRDS location URL, or null if not found
  7. * @throws YadisException on parsing errors or Yadis protocal violations
  8. */
  9. private String getHtmlMeta(String input) throws YadisException
  10. {
  11. String xrdsLocation;
  12. if (input == null)
  13. throw new YadisException("Cannot download HTML message",
  14. OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
  15. xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
  16. if (DEBUG)
  17. {
  18. _log.debug("input:\n" + input);
  19. _log.debug("xrdsLocation: " + xrdsLocation);
  20. }
  21. return xrdsLocation;
  22. }

代码示例来源:origin: jbufu/openid4java

  1. /**
  2. * Parses the HTML input stream and scans for the Yadis XRDS location
  3. * in the HTML HEAD Meta tags.
  4. *
  5. * @param input input data stream
  6. * @return String the XRDS location URL, or null if not found
  7. * @throws YadisException on parsing errors or Yadis protocal violations
  8. */
  9. private String getHtmlMeta(String input) throws YadisException
  10. {
  11. String xrdsLocation;
  12. if (input == null)
  13. throw new YadisException("Cannot download HTML message",
  14. OpenIDException.YADIS_HTMLMETA_DOWNLOAD_ERROR);
  15. xrdsLocation = YADIS_HTML_PARSER.getHtmlMeta(input);
  16. if (DEBUG)
  17. {
  18. _log.debug("input:\n" + input);
  19. _log.debug("xrdsLocation: " + xrdsLocation);
  20. }
  21. return xrdsLocation;
  22. }

相关文章

YadisHtmlParser类方法