Package com.atlassian.bamboo.setup
Interface BambooHomeLocator
-
- All Superinterfaces:
com.atlassian.config.HomeLocator
- All Known Implementing Classes:
BambooHomeLocatorImpl,BambooRollingFileAppender.HomeLocatorImpl,RemoteAgentHomeLocator
public interface BambooHomeLocator extends com.atlassian.config.HomeLocator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description @Nullable StringgetHomePath()Deprecated.explicit use ofgetLocalHomePath()should be preferred@Nullable StringgetLocalHomePath()Local (i.e.@Nullable StringgetSharedHomePath()Shared Bamboo home.
-
-
-
Method Detail
-
getHomePath
@Nullable @Deprecated @Nullable String getHomePath()
Deprecated.explicit use ofgetLocalHomePath()should be preferredLocal (i.e. node specific) Bamboo home. The same asgetLocalHomePath().- Specified by:
getHomePathin interfacecom.atlassian.config.HomeLocator
-
getLocalHomePath
@Nullable @Nullable String getLocalHomePath()
Local (i.e. node specific) Bamboo home. The same asgetHomePath().
-
getSharedHomePath
@Nullable @Nullable String getSharedHomePath()
Shared Bamboo home. Can only be the same asgetLocalHomePath()if run in single node mode.
-
-