com.atlassian.jira.config.properties
Interface PropertiesAccessor

All Known Implementing Classes:
JiraSystemPropertiesCache, SystemPropertiesAccessor

public interface PropertiesAccessor

Interface for accessing system properties.

Since:
v6.1

Method Summary
 Boolean getBoolean(String key)
           
 Integer getInteger(String key)
           
 Long getLong(String key)
           
 Properties getProperties()
           
 String getProperty(String key)
           
 void refresh()
           
 void refresh(String key)
           
 void setProperties(Properties props)
           
 void setProperty(String key, String value)
           
 void unsetProperty(String key)
           
 

Method Detail

getProperty

String getProperty(@Nonnull
                   String key)

setProperty

void setProperty(@Nonnull
                 String key,
                 @Nonnull
                 String value)

unsetProperty

void unsetProperty(@Nonnull
                   String key)

getProperties

Properties getProperties()

setProperties

void setProperties(@Nonnull
                   Properties props)

getBoolean

Boolean getBoolean(@Nonnull
                   String key)

getInteger

Integer getInteger(@Nonnull
                   String key)

getLong

Long getLong(@Nonnull
             String key)

refresh

void refresh()

refresh

void refresh(@Nonnull
             String key)


Copyright © 2002-2014 Atlassian. All Rights Reserved.