com.atlassian.fisheye.plugin.web.helpers
Interface RepositoryHelper


public interface RepositoryHelper


Method Summary
 java.lang.String getPath()
           
 java.lang.String getPathWithinRepository()
           
 RepositoryDataFE getRepositoryData()
           
 

Method Detail

getRepositoryData

RepositoryDataFE getRepositoryData()
Returns:
the context RepositoryData object.

getPath

java.lang.String getPath()
Returns:
the context repository path (directory names separated by slashes) if available, prepended with the repository name. If there is no path, this will simply return the repository name. Note this is NOT the standard path representation as used by FishEye internally, rather it is of the form:
REP_NAME/PATH/IN/REP
See Also:
getPathWithinRepository()

getPathWithinRepository

java.lang.String getPathWithinRepository()
Returns:
the context repository path (if available) without the prepended repository name (as in getPath()). If there is no path component this method will return null. The path returned will be formatted:
/PATH/IN/REP
See Also:
getPath()