Interface Preferences
-
- All Known Implementing Classes:
DefaultPreferences
,UserPreferences
@Deprecated public interface Preferences
Deprecated.since 8.8 no replacementAn interface to represent preferences objects within JIRA.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
getBoolean(String key)
Deprecated.long
getLong(String key)
Deprecated.String
getString(String key)
Deprecated.void
remove(String key)
Deprecated.void
setBoolean(String key, boolean b)
Deprecated.void
setLong(String key, long i)
Deprecated.void
setString(String key, String value)
Deprecated.
-
-
-
Method Detail
-
getLong
long getLong(String key)
Deprecated.
-
setLong
void setLong(String key, long i) throws com.atlassian.core.AtlassianCoreException
Deprecated.- Throws:
com.atlassian.core.AtlassianCoreException
-
setString
void setString(String key, String value) throws com.atlassian.core.AtlassianCoreException
Deprecated.- Throws:
com.atlassian.core.AtlassianCoreException
-
getBoolean
boolean getBoolean(String key)
Deprecated.
-
setBoolean
void setBoolean(String key, boolean b) throws com.atlassian.core.AtlassianCoreException
Deprecated.- Throws:
com.atlassian.core.AtlassianCoreException
-
remove
void remove(String key) throws com.atlassian.core.AtlassianCoreException
Deprecated.- Throws:
com.atlassian.core.AtlassianCoreException
-
-