Package com.sudicode.fb2gh.fogbugz
Class FBCase
- java.lang.Object
-
- com.sudicode.fb2gh.fogbugz.FBCase
-
public class FBCase extends Object
FogBugz case.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArea()
String
getAssignee()
String
getCategory()
String
getCustomer()
int
getDuplicateOfId()
List<FBCaseEvent>
getEvents()
int
getId()
int
getMilestoneId()
String
getMilestoneName()
int
getParentCaseId()
String
getPriority()
int
getProjectId()
String
getProjectName()
int
getSalesforceCaseId()
String
getStatus()
String
getTitle()
boolean
isClosed()
boolean
isOpen()
-
-
-
Method Detail
-
getId
public int getId()
- Returns:
- Case number
-
getParentCaseId
public int getParentCaseId()
- Returns:
- Parent case number
-
isOpen
public boolean isOpen()
- Returns:
true
if the case is open.false
if it is closed
-
isClosed
public boolean isClosed()
- Returns:
true
if the case is closed.false
if it is open
-
getTitle
public String getTitle()
- Returns:
- The title of the case
-
getAssignee
public String getAssignee()
- Returns:
- Name of the person assigned to the case
-
getStatus
public String getStatus()
- Returns:
- The status of the case
-
getDuplicateOfId
public int getDuplicateOfId()
- Returns:
- If marked as duplicate, the case that this case was a duplicate of
-
getPriority
public String getPriority()
- Returns:
- The priority of the case
-
getMilestoneId
public int getMilestoneId()
- Returns:
- ID of the milestone this case is assigned to
-
getMilestoneName
public String getMilestoneName()
- Returns:
- Name of the milestone this case is assigned to
-
getCategory
public String getCategory()
- Returns:
- The category of the case
-
getEvents
public List<FBCaseEvent> getEvents()
- Returns:
- All of the events for the case
-
getSalesforceCaseId
public int getSalesforceCaseId()
- Returns:
- The Salesforce case ID of the case (Requires Salesforce plugin)
-
getProjectId
public int getProjectId()
- Returns:
- Project ID
-
getProjectName
public String getProjectName()
- Returns:
- Project name
-
getArea
public String getArea()
- Returns:
- the area
-
getCustomer
public String getCustomer()
- Returns:
- The customer (Requires Salesforce plugin)
-
-