0

当用户关闭 JIRA 问题时,他们会选择“解决类别”,例如“用户错误”、“服务请求”等。

是否可以使用 SOAP API 查看该字段的值?我查看了我的问题的“解决方案”字段,但如果问题打开,它们总是空白,如果关闭,它们总是为“6”(因此“解决方案”不能与“解决方案”相同)。

任何信息将不胜感激。

4

2 回答 2

1

行。所以你想得到'Resolution Class'字段值。它很可能是一个自定义字段。因此,您必须使用 getCustomFields() where RemoteField.getName() == "Resolution Class" 找到该字段的 id。然后您可以在您的问题上调用 getCustomFieldValues() 以获取自定义字段的值。

于 2012-07-19T22:26:39.047 回答
0

您正在寻找 getResolutions 方法。

RemoteResolution[] getResolutions(java.lang.String token) 抛出 RemotePermissionException、RemoteAuthenticationException

返回 JIRA 中所有问题解决方案的数组。

参数: token - SOAP 身份验证令牌。

返回: RemoteResolution 对象数组

抛出: - RemotePermissionException - 如果不允许用户在此上下文中执行此操作。- RemoteAuthenticationException - 如果令牌无效或 SOAP 会话已超时

于 2012-07-19T21:50:19.990 回答