/*
* Copyright (c) 2015 BISON Schweiz AG, All Rights Reserved.
*/
package to.rtc.rtc2jira.storage;
/**
* A list of all field names used in rtc2jira
*
* @author roman.schaller
*
*/
public interface FieldNames {
String ID = "ID"; // DONE
String SUMMARY = "summary"; // DONE
String DESCRIPTION = "description"; // DONE
String WORK_ITEM_TYPE = "workItemType"; // DONE
String ACCEPTANCE_CRITERIAS = "acceptanceCriterias"; // DONE: custom field
String MODIFIED = "modified"; // IGNORE = updated (can't be PUT)
String CREATIONDATE = "creationDate"; // DONE (custom field)
String COMMENTS = "internalComments"; // DONE
String PRIORITY = "priority"; // DONE
String SEVERITY = "severity"; // DONE
String OWNER = "owner"; // DONE = assignee
String CREATOR = "creator"; // DONE = reporter
String MODIFIED_BY = "modifiedBy"; // no match. ignore
String RESOLVER = "resolver"; // DONE custom field
String RESOLUTION = "resolution"; // DONE (rtc 1=Fixed, 2=Duplicate/Rejected, 3=WorksAsDesigned,
// 4=WorksForMe,
// 5=Invalid)
String RESOLUTION_DATE = "resolutionDate"; // TODO = resolutiondate (can't be PUT)
String CATEGORY = "category"; // DONE
String ARCHIVED = "archived"; // DONE
String PROJECT_AREA = "projectArea";
String STORY_POINTS = "storyPoints"; // DONE
String CUSTOM_ATTRIBUTES = "customAttributes";
String STATE = "state"; // DONE
String TAGS = "tags"; // DONE
String ITERATION_INFO = "iterationLabel"; // TEST target
String DUE_DATE = "dueDate"; // DONE
String SUBSCRIPTIONS = "subscriptions"; // DONE
String GITHUB_WORKITEM_LINK = "githubissuenumber";
String PTF = "ptf"; // DONE
String ESTIMATED_TIME = "estimatedtime"; // DONE
String BISON_PROJECT_NAME = "bisonProjectName"; // DONE
String REF_MODEL = "refModel"; // DONE
String EP_REQ_NR = "ep_req_nr";
String EP_REQ_NR_UG = "ep_req_nr_ug";
String DP_REQ_NR = "dp_req_nr";
String PO_PREPLANNING_DONE = "popreplanningdone";
String MARKET_BUDGET = "marketBudget";
String COMPETENCE_CENTER = "competenceCenter";
String RELATED_PROJECTS = "relatedProjects";
String INDUSTRY_SECTOR = "industrySector";
String DEVL_DEADLINE = "developerDeadline";
String SECOND_ESTIMATION = "secondEstimation";
String TEST_SCRIPT_IDs = "testScriptIds";
String TIME_SLOT = "timeSlot";
String SILO_RANKING = "siloRanking";
String PRODUCT_OWNER = "productOwner";
String ROADMAP = "roadmap";
String CUSTOMER = "customer";
String REALISED_BY_IDM = "realisedByIDM";
String IMPLEMENTATION_LEVEL = "implementationLevel";
String PARENT = "parent";
String JIRA_ID_LINK = "jiraid";
String JIRA_KEY_LINK = "jiraKey";
String JIRA_EXPORT_TIMESTAMP = "jiraExportTimestamp";
String JIRA_LAST_EXPORTED_STATUS = "lastExportedStatus";
}