com.atlassian.sal.api.net.Request.setEntity()方法的使用及代码示例

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

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

Request.setEntity介绍

暂无

代码示例

代码示例来源:origin: com.atlassian.applinks/applinks-plugin-core

  1. public ApplicationLinkRequest setEntity(final Object entity)
  2. {
  3. return setDelegate(request.setEntity(entity));
  4. }

代码示例来源:origin: com.atlassian.applinks/applinks-common

  1. public ApplicationLinkRequest setEntity(final Object entity) {
  2. return setDelegate(request.setEntity(entity));
  3. }

代码示例来源:origin: com.atlassian.applinks/applinks-common

  1. @SuppressWarnings("unchecked")
  2. private void setRemoteStatus(ApplinkOAuthStatus status, ApplicationLink applink, RequestFactoryAdapter requestFactoryAdapter)
  3. throws ResponseException, CredentialsRequiredException {
  4. createDefaultJsonRequest(requestFactoryAdapter, MethodType.PUT, getStatusResourceUrl(applink))
  5. .setEntity(new RestApplinkOAuthStatus(status))
  6. .executeAndReturn(LoggingReturningResponseHandler.INSTANCE);
  7. }

代码示例来源:origin: com.atlassian.applinks/applinks-common

  1. private void remoteEnableUsingAuthenticationApi(OAuthConfig incoming,
  2. OAuthConfig outgoing,
  3. ApplicationLink applink,
  4. RequestFactoryAdapter requestFactoryAdapter,
  5. RemoteApplicationCapabilities capabilities)
  6. throws AuthenticationConfigurationException {
  7. try {
  8. // enable consumer (incoming)
  9. if (incoming.isEnabled()) {
  10. createDefaultJsonRequest(requestFactoryAdapter, MethodType.PUT, getAuthenticationConsumerResourceUrl(applink, capabilities))
  11. .setEntity(getRestConsumer(incoming))
  12. .executeAndReturn(LoggingReturningResponseHandler.INSTANCE);
  13. }
  14. if (outgoing.isEnabled()) {
  15. String authenticationProviderUrl = getAuthenticationProviderResourceUrl(applink);
  16. // enable providers (outgoing)
  17. for (Class<? extends AuthenticationProvider> providerClass : getProviders(outgoing)) {
  18. createDefaultJsonRequest(requestFactoryAdapter, MethodType.PUT, authenticationProviderUrl)
  19. .setEntity(new RestAuthenticationProvider(providerClass))
  20. .executeAndReturn(LoggingReturningResponseHandler.INSTANCE);
  21. }
  22. }
  23. } catch (ResponseException | CredentialsRequiredException e) {
  24. throw new AuthenticationConfigurationException(e);
  25. }
  26. }

代码示例来源:origin: com.atlassian.applinks/applinks-plugin

  1. .toString());
  2. createLinkBackRequest.setEntity(linkBack);

代码示例来源:origin: com.atlassian.applinks/applinks-plugin

  1. .setEntity(linkBackToMyself)
  2. .executeAndReturn(new ReturningResponseHandler<Response, ErrorListEntity>() {
  3. public ErrorListEntity handle(final Response response) throws ResponseException {

代码示例来源:origin: com.atlassian.applinks/applinks-plugin

  1. createSelfLinkFor(internalHostApplication.getId()));
  2. createTwoWayLinkRequest.setEntity(linkBackToMyself);

相关文章