Package com.google.gerrit.server.change
Interface PluginDefinedInfosFactory
-
- All Known Implementing Classes:
ChangeQueryProcessor
public interface PluginDefinedInfosFactory
Interface to generatePluginDefinedInfo
s from registeredChangePluginDefinedInfoFactory
s.See the plugin developer documentation for more details and examples.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.common.collect.ImmutableListMultimap<Change.Id,PluginDefinedInfo>
createPluginDefinedInfos(Collection<ChangeData> cds)
Create a plugin-provided info field from all the plugins for each of the providedChangeData
s.
-
-
-
Method Detail
-
createPluginDefinedInfos
com.google.common.collect.ImmutableListMultimap<Change.Id,PluginDefinedInfo> createPluginDefinedInfos(Collection<ChangeData> cds)
Create a plugin-provided info field from all the plugins for each of the providedChangeData
s.- Parameters:
cds
- changes.- Returns:
- map of the all plugin's special infos for each change.
-
-