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

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

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

Request.setRequestBody介绍

暂无

代码示例

代码示例来源:origin: com.atlassian.plugins.rest/atlassian-rest-module

  1. public JerseyRequest setRequestBody(String requestBody, String contentType) {
  2. delegateRequest.setRequestBody(requestBody, contentType);
  3. return this;
  4. }

代码示例来源:origin: com.atlassian.plugins.rest/atlassian-rest-module

  1. @Override
  2. public JerseyRequest setRequestBody(final String s) {
  3. delegateRequest.setRequestBody(s);
  4. return this;
  5. }

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

  1. public ApplicationLinkRequest setRequestBody(final String requestBody, final String contentType)
  2. {
  3. return setDelegate(request.setRequestBody(requestBody, contentType));
  4. }

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

  1. public ApplicationLinkRequest setRequestBody(String requestBody)
  2. {
  3. return setDelegate(request.setRequestBody(requestBody));
  4. }

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

  1. public ApplicationLinkRequest setRequestBody(String requestBody) {
  2. return setDelegate(request.setRequestBody(requestBody));
  3. }

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

  1. public ApplicationLinkRequest setRequestBody(final String requestBody, final String contentType) {
  2. return setDelegate(request.setRequestBody(requestBody, contentType));
  3. }

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

  1. request.setRequestBody(str);

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

  1. request.setRequestBody(data, "text/xml");
  2. if (log.isDebugEnabled())

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

  1. @Override
  2. protected String doExecute() throws Exception
  3. {
  4. String crucibleUrl = getCrucibleUrl();
  5. if (crucibleUrl == null)
  6. {
  7. return SUCCESS;
  8. }
  9. Request<?> request = requestFactory.createRequest(Request.MethodType.PUT,
  10. crucibleUrl + CRUCIBLE_METRICS_REST_ENDPOINT);
  11. request.addTrustedTokenAuthentication(themeProperties.getSystemAdministrator());
  12. request.setRequestBody(metrics);
  13. try
  14. {
  15. metrics = request.execute();
  16. }
  17. catch (ResponseException re)
  18. {
  19. addErrorMessage(getText("crucible.admin.error.response"));
  20. log.error("Error communicating with Crucible", re);
  21. }
  22. return getRedirect("EditMetrics!Default.jspa?message=crucible.admin.info.metrics.updated");
  23. }

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

  1. @Override
  2. protected String doExecute() throws Exception
  3. {
  4. if (!hasAdministratePermissionOnProject(key))
  5. {
  6. return SECURITY_BREACH;
  7. }
  8. ApplicationLink appLink = appLinksManager.getLinkedApplication(Application.CRUCIBLE.name(), key);
  9. Request<?> request = requestFactory.createRequest(Request.MethodType.PUT, getRestResource(appLink));
  10. request.addTrustedTokenAuthentication(themeProperties.getSystemAdministrator());
  11. request.setRequestBody(XStreamUtils.toXML(projectConfig));
  12. try
  13. {
  14. request.execute();
  15. }
  16. catch (ResponseException re)
  17. {
  18. addErrorMessage(re.getMessage());
  19. log.error("Error putting crucible project config", re);
  20. return INPUT;
  21. }
  22. return getRedirect("CrucibleProject!ListProjects.jspa?message=crucible.admin.info.updated");
  23. }

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

  1. public String doSynchronize()
  2. {
  3. final ApplicationLink localLink = appLinksManager.getLinkedApplication(app, getKey());
  4. final String restUrl = localLink.getUrl() + "/plugins/servlet/applinks/projectlinks";
  5. final Request<?> request = requestFactory.createRequest(Request.MethodType.POST,
  6. restUrl + "?key=" + localLink.getRemoteKey() + "&application=JIRA");
  7. final ApplicationLink remoteLink = new DefaultApplicationLink("jira", getKey(), null, null);
  8. request.setRequestBody(XStreamUtils.toXML(remoteLink));
  9. request.addTrustedTokenAuthentication();
  10. try
  11. {
  12. request.execute();
  13. }
  14. catch (final ResponseException re)
  15. {
  16. return getRedirect("ViewProject.jspa?message=editprojectlinks.error.synchronize&pid=" + getPid());
  17. }
  18. return getRedirect("ViewProject.jspa?message=editprojectlinks.result.synchronized&pid=" + getPid());
  19. }

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

  1. final Request<?> request = createRequest(localLink, restUrl);
  2. final ApplicationLink remoteLink = new DefaultApplicationLink("jira", getKey(), null, null);
  3. request.setRequestBody(XStreamUtils.toXML(remoteLink));
  4. request.addTrustedTokenAuthentication();
  5. try

相关文章