Package org.xwiki.extension.repository
Interface ExtensionRepositorySource
-
- All Known Implementing Classes:
AbstractExtensionRepositorySource
@Role public interface ExtensionRepositorySource
A repository identifiers source (for example xwiki.properties).- Since:
- 4.0M1
- Version:
- $Id: 3e0f940ef725c2fdf7bdd6f593d7cbae8f181a98 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description Collection<ExtensionRepositoryId>
getExtensionRepositories()
Deprecated.since 4.3M1 usegetExtensionRepositoryDescriptors()
insteadCollection<ExtensionRepositoryDescriptor>
getExtensionRepositoryDescriptors()
default int
getPriority()
The priority used to order extension repositories.
-
-
-
Method Detail
-
getPriority
default int getPriority()
The priority used to order extension repositories. The lowest values have the highest priorities and are listed first. For example a repository priority of 100 will be checked before one with a priority of 500.- Returns:
- the priority
- Since:
- 8.3M1
-
getExtensionRepositories
@Deprecated Collection<ExtensionRepositoryId> getExtensionRepositories()
Deprecated.since 4.3M1 usegetExtensionRepositoryDescriptors()
instead- Returns:
- the extension repositories identifiers
-
getExtensionRepositoryDescriptors
Collection<ExtensionRepositoryDescriptor> getExtensionRepositoryDescriptors()
- Returns:
- the extension repositories identifiers
-
-