gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-15 09:38:49 26 4
gpt4 key购买 nike

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

YadisException介绍

暂无

代码示例

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

/**
 * Constructs a URL object from a string;
 * needed by the YadisURL(String) constructor
 *
 * @param urlString URL-type identifier in string format
 * @return URL object
 * @throws YadisException if the provided string is not a valid URL
 */
private static URL urlFromString(String urlString) throws YadisException {
  URL url;
  try {
    url = new URL(urlString);
  } catch (MalformedURLException e) {
    throw new YadisException("Invalid URL: " + urlString,
                 OpenIDException.YADIS_INVALID_URL, e);
  }
  return url;
}

代码示例来源:origin: org.wso2.carbon.identity.agent.sso.java/org.wso2.carbon.identity.sso.agent

if (e.getErrorCode() == 1796) {
  throw new SSOAgentException(e.getMessage(), e);

代码示例来源:origin: org.wso2.carbon.identity/org.wso2.carbon.identity.sso.agent

if (e.getErrorCode() == 1796) {
  throw new SSOAgentException(e.getMessage(), e);

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

/**
 * Constructs a URL object from a string;
 * needed by the YadisURL(String) constructor
 *
 * @param urlString         URL-type identifier in string format
 * @return                  URL object
 * @throws YadisException   if the provided string is not a valid URL
 */
private static URL urlFromString(String urlString) throws YadisException
{
  URL url;
  try
  {
    url = new URL(urlString);
  }
  catch (MalformedURLException e)
  {
    throw new YadisException("Invalid URL: " + urlString,
        OpenIDException.YADIS_INVALID_URL, e);
  }
  return url;
}

代码示例来源:origin: org.wso2.carbon.identity/org.wso2.carbon.identity.application.authenticator.openid

if (e.getErrorCode() == 1796) {
  throw new OpenIDException(e.getMessage(), e);

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

/**
 * Constructs a URL object from a string;
 * needed by the YadisURL(String) constructor
 *
 * @param urlString         URL-type identifier in string format
 * @return                  URL object
 * @throws YadisException   if the provided string is not a valid URL
 */
private static URL urlFromString(String urlString) throws YadisException
{
  URL url;
  try
  {
    url = new URL(urlString);
  }
  catch (MalformedURLException e)
  {
    throw new YadisException("Invalid URL: " + urlString,
        OpenIDException.YADIS_INVALID_URL, e);
  }
  return url;
}

代码示例来源:origin: org.wso2.carbon.identity.outbound.auth.openid/org.wso2.carbon.identity.application.authenticator.openid

if (e.getErrorCode() == 1796) {
  throw new OpenIDException(e.getMessage(), e);

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

/**
 * Constructs a URL object from a string;
 * needed by the YadisURL(String) constructor
 *
 * @param urlString         URL-type identifier in string format
 * @return                  URL object
 * @throws YadisException   if the provided string is not a valid URL
 */
private static URL urlFromString(String urlString) throws YadisException
{
  URL url;
  try
  {
    url = new URL(urlString);
  }
  catch (MalformedURLException e)
  {
    throw new YadisException("Invalid URL: " + urlString,
        OpenIDException.YADIS_INVALID_URL, e);
  }
  return url;
}

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

/**
 * Constructs a URL object from a string;
 * needed by the YadisURL(String) constructor
 *
 * @param urlString         URL-type identifier in string format
 * @return                  URL object
 * @throws YadisException   if the provided string is not a valid URL
 */
private static URL urlFromString(String urlString) throws YadisException
{
  URL url;
  try
  {
    url = new URL(urlString);
  }
  catch (MalformedURLException e)
  {
    throw new YadisException("Invalid URL: " + urlString,
        OpenIDException.YADIS_INVALID_URL, e);
  }
  return url;
}

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

/**
 * Constructs a YadisURL from a URL object;
 * insures the schema is HTTP or HTTPS
 *
 * @param urlId             URL identifier
 * @throws YadisException   tf the URL identifier is not a valid YadisURL
 */
public YadisUrl(URL urlId) throws YadisException
{
  if (isValid(urlId))
    _yadisUrl = urlId;
  else
    throw new YadisException(
      "The scheme name of a Yadis URL must be 'http' or 'https'",
      OpenIDException.YADIS_INVALID_SCHEME);
}

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

/**
 * Constructs a YadisURL from a URL object;
 * insures the schema is HTTP or HTTPS
 *
 * @param urlId             URL identifier
 * @throws YadisException   tf the URL identifier is not a valid YadisURL
 */
public YadisUrl(URL urlId) throws YadisException
{
  if (isValid(urlId))
    _yadisUrl = urlId;
  else
    throw new YadisException(
      "The scheme name of a Yadis URL must be 'http' or 'https'",
      OpenIDException.YADIS_INVALID_SCHEME);
}

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

/**
 * Constructs a YadisURL from a URL object;
 * insures the schema is HTTP or HTTPS
 *
 * @param urlId             URL identifier
 * @throws YadisException   tf the URL identifier is not a valid YadisURL
 */
public YadisUrl(URL urlId) throws YadisException
{
  if (isValid(urlId))
    _yadisUrl = urlId;
  else
    throw new YadisException(
      "The scheme name of a Yadis URL must be 'http' or 'https'",
      OpenIDException.YADIS_INVALID_SCHEME);
}

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

/**
 * Constructs a YadisURL from a URL object;
 * insures the schema is HTTP or HTTPS
 *
 * @param urlId URL identifier
 * @throws YadisException tf the URL identifier is not a valid YadisURL
 */
public YadisUrl(URL urlId) throws YadisException {
  if (isValid(urlId)) {
    _yadisUrl = urlId;
  } else {
    throw new YadisException(
        "The scheme name of a Yadis URL must be 'http' or 'https'",
        OpenIDException.YADIS_INVALID_SCHEME);
  }
}

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

/**
 * Constructs a YadisURL from a URL object;
 * insures the schema is HTTP or HTTPS
 *
 * @param urlId             URL identifier
 * @throws YadisException   tf the URL identifier is not a valid YadisURL
 */
public YadisUrl(URL urlId) throws YadisException
{
  if (isValid(urlId))
    _yadisUrl = urlId;
  else
    throw new YadisException(
      "The scheme name of a Yadis URL must be 'http' or 'https'",
      OpenIDException.YADIS_INVALID_SCHEME);
}

代码示例来源: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.wso2.org.openid4java/openid4java-nodeps

(!xrdsUrl.getProtocol().equals("http") &&
 !xrdsUrl.getProtocol().equals("https"))) {
throw new YadisException("A Yadis Resource Descriptor URL" +
             " MUST be an absolute URL and " +
             "it must be HTTP or HTTPS; found: " + xrdsLocation,

代码示例来源: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.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: org.openid4java/openid4java-nodeps

( ! xrdsUrl.getProtocol().equals("http") &&
  ! xrdsUrl.getProtocol().equals("https")) )
throw new YadisException("A Yadis Resource Descriptor URL" +
    " MUST be an absolute URL and " +
    "it must be HTTP or HTTPS; found: " + 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;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com