com.atlassian.jira.rest.v2.issue
Class IssueTypeWithStatusJsonBeanExample

java.lang.Object
  extended by com.atlassian.jira.rest.v2.issue.IssueTypeWithStatusJsonBeanExample

public class IssueTypeWithStatusJsonBeanExample
extends Object

Since:
v6.0

Field Summary
static List<IssueTypeWithStatusJsonBean> DOC_EXAMPLE
          Example representation of an issue type with statuses
static IssueTypeWithStatusJsonBean ISSUE_TYPE_EXAMPLE
           
 
Constructor Summary
IssueTypeWithStatusJsonBeanExample()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DOC_EXAMPLE

public static final List<IssueTypeWithStatusJsonBean> DOC_EXAMPLE
Example representation of an issue type with statuses
 {
 "self": "http://localhost:2990/jira/rest/api/latest/issuetype/1",
 "id": "1",
 "name": "Bug",
 "subtask": false,
 "statuses": [
 {
 "self": "http://localhost:2990/jira/rest/api/latest/status/1",
 "description": "The issue is open and ready for the assignee to start work on it.",
 "iconUrl": "http://localhost:2990/jira/images/icons/status_open.gif",
 "name": "Open",
 "id": "1"
 },
 {
 "self": "http://localhost:2990/jira/rest/api/latest/status/3",
 "description": "This issue is being actively worked on at the moment by the assignee.",
 "iconUrl": "http://localhost:2990/jira/images/icons/status_inprogress.gif",
 "name": "In Progress",
 "id": "3"
 }
 ]
 }
 


ISSUE_TYPE_EXAMPLE

public static final IssueTypeWithStatusJsonBean ISSUE_TYPE_EXAMPLE
Constructor Detail

IssueTypeWithStatusJsonBeanExample

public IssueTypeWithStatusJsonBeanExample()


Copyright © 2002-2013 Atlassian. All Rights Reserved.