Package org.eclipse.jgit.transport
Interface RefFilter
public interface RefFilter
Filters the list of refs that are advertised to the client.
The filter is called by ReceivePack
and
UploadPack
to ensure that the refs are
filtered before they are advertised to the client.
This can be used by applications to control visibility of certain refs based on a custom set of rules.
-
Field Summary
Fields -
Method Summary
-
Field Details
-
DEFAULT
The default filter, allows all refs to be shown.
-
-
Method Details
-
filter
Filters aMap
of refs before it is advertised to the client.- Parameters:
refs
- the refs which this method need to consider.- Returns:
- the filtered map of refs.
-