Uses of Class
org.eclipse.jgit.lib.ObjectChecker
Packages that use ObjectChecker
Package
Description
Distributed file system based repository storage.
Core API for repository, config, refs, object database.
Transport (fetch/push) for different protocols.
-
Uses of ObjectChecker in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type ObjectCheckerModifier and TypeMethodDescriptionvoid
DfsFsck.setObjectChecker
(ObjectChecker objChecker) Use a customized object checker instead of the default one. -
Uses of ObjectChecker in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return ObjectCheckerModifier and TypeMethodDescriptionObjectChecker.setAllowInvalidPersonIdent
(boolean allow) Enable accepting invalid author, committer and tagger identities.ObjectChecker.setAllowLeadingZeroFileMode
(boolean allow) Enable accepting leading zero mode in tree entries.ObjectChecker.setIgnore
(Set<ObjectChecker.ErrorType> ids) Configure error types to be ignored across all objects.ObjectChecker.setIgnore
(ObjectChecker.ErrorType id, boolean ignore) Add message type to be ignored across all objects.ObjectChecker.setSafeForMacOS
(boolean mac) Restrict trees to only names legal on Mac OS X platforms.ObjectChecker.setSafeForWindows
(boolean win) Restrict trees to only names legal on Windows platforms.ObjectChecker.setSkipList
(ObjectIdSet objects) Enable accepting specific malformed (but not horribly broken) objects. -
Uses of ObjectChecker in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport that return ObjectCheckerModifier and TypeMethodDescriptionTransport.getObjectChecker()
Get configured object checker for received objectsTransferConfig.newObjectChecker()
Create checker to verify fetched objectsTransferConfig.newReceiveObjectChecker()
Create checker to verify objects pushed into this repositoryMethods in org.eclipse.jgit.transport with parameters of type ObjectCheckerModifier and TypeMethodDescriptionvoid
PackParser.setObjectChecker
(ObjectChecker oc) Configure the checker used to validate received objects.void
ReceivePack.setObjectChecker
(ObjectChecker impl) Set the object checking instance to verify each received object withvoid
Transport.setObjectChecker
(ObjectChecker impl) Set the object checker to verify each received object with