private String getDefaultPromotionPathCoordinateTextFieldContent() {
   UUID promotionPathUUID =
       AppContext.getAppConfiguration().getCurrentWorkflowPromotionPathUuidAsUUID();
   if (promotionPathUUID == null) {
     return "";
   }
   try {
     return OTFUtility.getConceptVersion(promotionPathUUID).getPreferredDescription().getText();
   } catch (IOException | ContradictionException e) {
     return "";
   }
 }
 public static String getDefaultChangeSetUrl() {
   return AppContext.getAppConfiguration().getDefaultChangeSetUrl();
 }
 public static String getDefaultWorkflowServerUrl() {
   return AppContext.getAppConfiguration().getDefaultWorkflowServerUrl();
 }
 public static UUID getDefaultWorkflowPromotionPath() {
   return AppContext.getAppConfiguration().getDefaultWorkflowPromotionPathUuidAsUUID();
 }