com.atlassian.bamboo.v2.build.repository
Interface RepositoryEventAware

All Superinterfaces:
BambooPluginModule, ConfigurablePlugin, ConvertibleFromConfig, Repository, RepositoryV2, java.io.Serializable

public interface RepositoryEventAware
extends Repository

An interface that allows the repository to do something before and after the checkout / update occurs


Field Summary
 
Fields inherited from interface com.atlassian.bamboo.repository.Repository
SELECTED_REPOSITORY, UNKNOWN_HOST
 
Method Summary
 void postRetrieveSourceCode(BuildContext buildContext)
          postRetrieveSourceCode will run after the retrieveSourceCode method is called.
 void preRetrieveSourceCode(BuildContext buildContext)
          preRetrieveSourceCode will run before the retrieveSourceCode method is called.
 
Methods inherited from interface com.atlassian.bamboo.repository.Repository
checkConnection, getHost, getKey, getName, getTriggerIpAddress, isRepositoryDifferent, setReferencesDifferentRepository
 
Methods inherited from interface com.atlassian.bamboo.fieldvalue.ConvertibleFromConfig
populateFromConfig, toConfiguration
 
Methods inherited from interface com.atlassian.bamboo.v2.build.repository.RepositoryV2
collectChangesSinceLastBuild, getSourceCodeDirectory, referencesDifferentRepository, retrieveSourceCode
 
Methods inherited from interface com.atlassian.bamboo.v2.build.ConfigurablePlugin
addDefaultValues, customizeBuildRequirements, getEditHtml, getViewHtml, init, prepareConfigObject, validate
 

Method Detail

preRetrieveSourceCode

void preRetrieveSourceCode(@NotNull
                           BuildContext buildContext)
preRetrieveSourceCode will run before the retrieveSourceCode method is called. It allows you to do custom actions to prepare for the checkout such as some customised cleanup of the source directory.

Parameters:
buildContext -

postRetrieveSourceCode

void postRetrieveSourceCode(@NotNull
                            BuildContext buildContext)
postRetrieveSourceCode will run after the retrieveSourceCode method is called. The extension point allows you to easily set custom data, do any post checkout collection of data.

Parameters:
buildContext -


Copyright © 2008 Atlassian Pty Ltd. All Rights Reserved.