Package jetbrains.vcs.api.services.tc
Interface MappingResult
-
public interface MappingResultMapping result forPersonalSupportBatchService.mapPath(Collection, String, boolean)call- Since:
- 8.0
- Author:
- kir
- See Also:
PersonalSupportBatchService.mapPath(Collection, String, boolean)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>getAlternativeMappings()StringgetMappedPath()VcsSettingsgetMappedSettings()Collection<Collection<String>>getSkippedByCheckoutRules()
-
-
-
Method Detail
-
getMappedPath
@Nullable String getMappedPath()
- Returns:
- the mapped path (according to checkout rules) in the target workspace
-
getMappedSettings
VcsSettings getMappedSettings()
- Returns:
- parameters of the repository layout for which the mapping was found
-
getAlternativeMappings
Collection<String> getAlternativeMappings()
- Returns:
- if 'returnFirstMatch' parameter is false, returns alternative target mappings for 'pathToMap'
-
getSkippedByCheckoutRules
Collection<Collection<String>> getSkippedByCheckoutRules()
- Returns:
- list of lists of candidate paths from different VCS, which were rejected due to checkout rules limitations
-
-