Assuming you mean non-field properties such as described here ...
Try to explore the IssuePropertyService
import com.atlassian.jira.bc.issue.properties.IssuePropertyService
def issuePropertyService = ComponentAccessor.getComponentOfType(IssuePropertyService.class)
issuePropertyService.getPropertiesKeys(null, issue.id).each{
log.info it.keys()
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The majority of your interactions with issues using the Java API will occur with the Issue and IssueManager classes (and of course MutableIssue).
https://docs.atlassian.com/software/jira/docs/api/7.11.0/com/atlassian/jira/issue/Issue.html?_ga=2.69582098.367400705.1556550288-1439335163.1544544516
https://docs.atlassian.com/software/jira/docs/api/7.11.0/com/atlassian/jira/issue/IssueManager.html?_ga=2.69582098.367400705.1556550288-1439335163.1544544516
https://docs.atlassian.com/software/jira/docs/api/7.11.0/com/atlassian/jira/issue/MutableIssue.html?_ga=2.69582098.367400705.1556550288-1439335163.1544544516
So a simple Scriptrunner script that pulls a few issue properties might look like this (some things expanded for clarity that would otherwise be simplified in a real script):
import org.apache.log4j.Logger
import org.apache.log4j.Level
import com.atlassian.jira.component.ComponentAccessor
// Set logging level so we can see debug information
def log = Logger.getLogger("com.example.ListIssueProperties");
log.setLevel(Level.DEBUG);
// This is how we log information in Scriptrunner:
// log.debug("This will appear in Scriptrunner logs");
// Modify this to be the issue key you want to examine:
def issueKey = "PROJECTKEY-1";
// Get an instance of the Issue Manager
def issueManager = ComponentAccessor.getIssueManager();
// Get the issue you're interested in by issue key:
def issueObject = issueManager.getIssueObject(issueKey);
// We can now access the issue properties, as below:
def issueObjectPriority = issueObject.getPriority();
def issueObjectStatus = issueObject.getStatus();
// Output the issue status name and priority name to debug logging:
log.debug("Issue status: ${issueObject.getStatus().name}");
log.debug("Issue priority: ${issueObject.getPriority().name}");
return null;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What do you mean by properties? Field values?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.