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 StringgetArea()StringgetAssignee()StringgetCategory()StringgetCustomer()intgetDuplicateOfId()List<FBCaseEvent>getEvents()intgetId()intgetMilestoneId()StringgetMilestoneName()intgetParentCaseId()StringgetPriority()intgetProjectId()StringgetProjectName()intgetSalesforceCaseId()StringgetStatus()StringgetTitle()booleanisClosed()booleanisOpen()
-
-
-
Method Detail
-
getId
public int getId()
- Returns:
- Case number
-
getParentCaseId
public int getParentCaseId()
- Returns:
- Parent case number
-
isOpen
public boolean isOpen()
- Returns:
trueif the case is open.falseif it is closed
-
isClosed
public boolean isClosed()
- Returns:
trueif the case is closed.falseif 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)
-
-