org.apache.commons.httpclient.auth.AuthScope.getScheme()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(139)

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

AuthScope.getScheme介绍

暂无

代码示例

代码示例来源:origin: commons-httpclient/commons-httpclient

/** 
 * Creates a copy of the given credentials scope.
 * 
 * @since 3.0
 */
public AuthScope(final AuthScope authscope) {
  super();
  if (authscope == null) {
    throw new IllegalArgumentException("Scope may not be null");
  }
  this.host = authscope.getHost();
  this.port = authscope.getPort();
  this.realm = authscope.getRealm();
  this.scheme = authscope.getScheme();
}

代码示例来源:origin: org.jvnet.hudson/htmlunit

/**
 * @param scheme the request scheme for which Credentials are asked
 * @param scope the configured authorization scope
 * @return <code>true</code> if the scope's scheme matches the provided one
 */
protected boolean matchScheme(final AuthScope scope, final AuthScheme scheme) {
  return scope.getScheme() == AuthScope.ANY_SCHEME || scope.getScheme().equals(scheme.getSchemeName());
}

代码示例来源:origin: org.jenkins-ci/htmlunit

/**
 * @param scheme the request scheme for which Credentials are asked
 * @param scope the configured authorization scope
 * @return <code>true</code> if the scope's scheme matches the provided one
 */
protected boolean matchScheme(final AuthScope scope, final AuthScheme scheme) {
  return scope.getScheme() == AuthScope.ANY_SCHEME || scope.getScheme().equals(scheme.getSchemeName());
}

代码示例来源:origin: net.disy.htmlunit/htmlunit

/**
 * @param scheme the request scheme for which Credentials are asked
 * @param scope the configured authorization scope
 * @return <code>true</code> if the scope's scheme matches the provided one
 */
protected boolean matchScheme(final AuthScope scope, final AuthScheme scheme) {
  return scope.getScheme() == AuthScope.ANY_SCHEME || scope.getScheme().equals(scheme.getSchemeName());
}

代码示例来源:origin: org.jvnet.hudson/htmlunit

private void writeObject(final ObjectOutputStream stream) throws IOException {
  stream.writeObject(authScope_.getHost());
  stream.writeInt(authScope_.getPort());
  stream.writeObject(authScope_.getRealm());
  stream.writeObject(authScope_.getScheme());
}
private void readObject(final ObjectInputStream stream) throws IOException, ClassNotFoundException {

代码示例来源:origin: net.disy.htmlunit/htmlunit

private void writeObject(final ObjectOutputStream stream) throws IOException {
  stream.writeObject(authScope_.getHost());
  stream.writeInt(authScope_.getPort());
  stream.writeObject(authScope_.getRealm());
  stream.writeObject(authScope_.getScheme());
}
private void readObject(final ObjectInputStream stream) throws IOException, ClassNotFoundException {

代码示例来源:origin: org.jenkins-ci/htmlunit

private void writeObject(final ObjectOutputStream stream) throws IOException {
  stream.writeObject(authScope_.getHost());
  stream.writeInt(authScope_.getPort());
  stream.writeObject(authScope_.getRealm());
  stream.writeObject(authScope_.getScheme());
}
private void readObject(final ObjectInputStream stream) throws IOException, ClassNotFoundException {

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/** 
 * Creates a copy of the given credentials scope.
 * 
 * @since 3.0
 */
public AuthScope(final AuthScope authscope) {
  super();
  if (authscope == null) {
    throw new IllegalArgumentException("Scope may not be null");
  }
  this.host = authscope.getHost();
  this.port = authscope.getPort();
  this.realm = authscope.getRealm();
  this.scheme = authscope.getScheme();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/** 
 * Creates a copy of the given credentials scope.
 * 
 * @since 3.0
 */
public AuthScope(final AuthScope authscope) {
  super();
  if (authscope == null) {
    throw new IllegalArgumentException("Scope may not be null");
  }
  this.host = authscope.getHost();
  this.port = authscope.getPort();
  this.realm = authscope.getRealm();
  this.scheme = authscope.getScheme();
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/** 
 * Creates a copy of the given credentials scope.
 * 
 * @since 3.0
 */
public AuthScope(final AuthScope authscope) {
  super();
  if (authscope == null) {
    throw new IllegalArgumentException("Scope may not be null");
  }
  this.host = authscope.getHost();
  this.port = authscope.getPort();
  this.realm = authscope.getRealm();
  this.scheme = authscope.getScheme();
}

代码示例来源:origin: org.apache.commons/httpclient

/** 
 * Creates a copy of the given credentials scope.
 * 
 * @since 3.0
 */
public AuthScope(final AuthScope authscope) {
  super();
  if (authscope == null) {
    throw new IllegalArgumentException("Scope may not be null");
  }
  this.host = authscope.getHost();
  this.port = authscope.getPort();
  this.realm = authscope.getRealm();
  this.scheme = authscope.getScheme();
}

相关文章