Hi,
i got an issue custom field (selectable values: A, B, C ord D) --> only one selectable.
hi is it possible to get all possible values of a custom field without iterating through all projects?
just like this:
CimProject p = new CimProject("MYKEY");
...
For this you have parse the versions object.
Inside the versions object there will be a value called as 'archived'. If it is set to true then it is an archived version. Else it is not archived.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks a lot. It works - specially for CustomFields with a SingleVersionPicker too.
But how do i get only Versions, which are not archived?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you know the field ID, then pull an issue from that project using GET REST for issue. In the expand parameter specify 'editmeta'. JIRA will give you all the possible values for all select fields and even cascade fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks, i think you mean this one:
for (Map.Entry<String, CimFieldInfo> entry : issueType.getFields().entrySet()) { final CimFieldInfo fieldInfo = entry.getValue(); final String fieldCustomType = fieldInfo.getSchema().getCustom(); final String fieldType = fieldInfo.getSchema().getType(); final String fieldId = fieldInfo.getId(); if ("project".equals(fieldId) || "issuetype".equals(fieldId)) { // this field was already set by IssueInputBuilder constructor - skip it continue; } log.log(MessageFormat.format("\t* [{0}] {1}\n\t\t| schema: {2}\n\t\t| required: {3}", fieldId, fieldInfo .getName(), fieldInfo.getSchema(), fieldInfo.isRequired())); // choose value for this field Object value = null; final Iterable<Object> allowedValues = fieldInfo.getAllowedValues(); if (allowedValues != null) { log.log("\t\t| field only accepts those values:"); for (Object val : allowedValues) { log.log("\t\t\t* " + val); }
but how do i get all possible values for a special field? (i know the field id)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it's higher up in the same method. issueType.getFields().entrySet() - gives map of all the field types. Values are of CimFieldInfo type, you can call getAllowedValues() method to get available values.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There are few examples available in the JRJC tests, see interactiveUseCase test for example (https://bitbucket.org/atlassian/jira-rest-java-client/src/2c903a9498db3f12bda64289dd51264af7aa2b4e/test/src/test/java/it/AsynchronousIssueRestClientCreateIssueTest.java?at=master#cl-800)
Hope that helps,
Piotr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.