org.restlet.data.Request.isConfidential()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(262)

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

Request.isConfidential介绍

[英]Implemented based on the Protocol#isConfidential() method for the request's protocol returned by #getProtocol();
[中]基于#getProtocol()返回的请求协议的#isConfidential()方法实现;

代码示例

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

  1. @Override
  2. public boolean isConfidential() {
  3. return getRequest().isConfidential();
  4. }

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

  1. /**
  2. * Indicates if the call came over a confidential channel such as an
  3. * SSL-secured connection.
  4. *
  5. * @return True if the call came over a confidential channel.
  6. */
  7. @Override
  8. public boolean isConfidential() {
  9. return getWrappedRequest().isConfidential();
  10. }

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

  1. if (variableName.equals("c")) {
  2. result = Boolean
  3. .toString(this.request.isConfidential());
  4. } else if (variableName.equals("cia")) {
  5. result = this.request.getClientInfo().getAddress();

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

  1. if (request.isConfidential()) {
  2. result.getRequestContext().put(AccessManager.REQUEST_CONFIDENTIAL, Boolean.TRUE);

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

  1. if (request.isConfidential()) {
  2. result.getRequestContext().put(AccessManager.REQUEST_CONFIDENTIAL, Boolean.TRUE);

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. if ( request.isConfidential() )

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. if ( request.isConfidential() )

相关文章