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

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

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

Request.setChallengeResponse介绍

[英]Sets the authentication response sent by a client to an origin server.
[中]设置客户端发送到源服务器的身份验证响应。

代码示例

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

  1. /**
  2. * Sets the authentication response sent by a client to an origin server.
  3. *
  4. * @param response
  5. * The authentication response sent by a client to an origin
  6. * server.
  7. */
  8. @Override
  9. public void setChallengeResponse(ChallengeResponse response) {
  10. getWrappedRequest().setChallengeResponse(response);
  11. }

代码示例来源:origin: uk.org.mygrid.remotetaverna/taverna-rest-client

  1. private Request makeRequest(Reference uri, MediaType accepts) {
  2. Request request = new Request();
  3. logger.debug("Making new request for " + uri + " -- " + uri.getTargetRef());
  4. request.setResourceRef(uri.getTargetRef());
  5. if (accepts != null) {
  6. request.getClientInfo().getAcceptedMediaTypes().add(
  7. new Preference<MediaType>(accepts));
  8. }
  9. if (baseURI.isParent(uri) && username != null) {
  10. logger.debug("Authenticating as " + username);
  11. ChallengeResponse challengeResponse =
  12. new ChallengeResponse(ChallengeScheme.HTTP_BASIC, username,
  13. password);
  14. request.setChallengeResponse(challengeResponse);
  15. } else {
  16. logger.warn("Not supplying credentials for out-of-site URI " + uri);
  17. }
  18. return request;
  19. }

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

  1. public Response sendRequest( Method method, String url, Representation representation )
  2. {
  3. this.logger.debug( "Method: " + method.getName() + " url: " + url );
  4. Request request = new Request();
  5. request.setResourceRef( url );
  6. request.setMethod( method );
  7. if ( !Method.GET.equals( method ) && !Method.DELETE.equals( method ) )
  8. {
  9. request.setEntity( representation );
  10. }
  11. request.setChallengeResponse( this.challenge );
  12. return this.restClient.handle( request );
  13. }

代码示例来源:origin: org.sonatype.nexus/nexus-test-utils

  1. public Response sendMessage( final Request request, final Matcher<Response> matchers )
  2. throws IOException
  3. {
  4. checkNotNull( request );
  5. // check the text context to see if this is a secure test
  6. if ( testContext.isSecureTest() )
  7. {
  8. // ChallengeScheme scheme = new ChallengeScheme( "HTTP_NxBasic", "NxBasic", "Nexus Basic" );
  9. ChallengeResponse authentication =
  10. new ChallengeResponse(
  11. ChallengeScheme.HTTP_BASIC, testContext.getUsername(), testContext.getPassword()
  12. );
  13. request.setChallengeResponse( authentication );
  14. }
  15. LOG.debug( "sendMessage: " + request.getMethod().getName() + " " + request.getResourceRef().toString() );
  16. Response response = client.handle( request );
  17. if ( matchers != null )
  18. {
  19. try
  20. {
  21. assertThat( response, matchers );
  22. }
  23. catch ( AssertionError e )
  24. {
  25. releaseResponse( response );
  26. throw e;
  27. }
  28. }
  29. return response;
  30. }

代码示例来源:origin: org.sonatype.nexus/nexus-test-harness-launcher

  1. request.setChallengeResponse(authentication);

代码示例来源:origin: org.sonatype.nexus/nexus-test-harness-base

  1. context.getUsername(),
  2. context.getPassword() );
  3. request.setChallengeResponse( authentication );

相关文章