1 package com.atlassian.jira.config.settings.providers; 2 3 import java.util.Map; 4 5 public interface SettingsProvider { 6 7 // final static String OPTION_PARAMETER = "option"; 8 // final static String STRING_PARAMETER = "string"; 9 10 String getId(); 11 12 Map getSettings(); 13 14 String getTitleI18nKey(); 15 16 String getHelpURL(); 17 18 String getDescriptionI18nKey(); 19 20 }