Uses of Class
org.eclipse.jgit.lib.ObjectChecker
-
Packages that use ObjectChecker Package Description org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.util Utility classes. -
-
Uses of ObjectChecker in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type ObjectChecker Modifier and Type Method Description private static void
DirCacheCheckout. checkValidPathSegment(ObjectChecker chk, CanonicalTreeParser t)
-
Uses of ObjectChecker in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as ObjectChecker Modifier and Type Field Description private ObjectChecker
DfsFsck. objChecker
Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type ObjectChecker Modifier and Type Method Description void
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 ObjectChecker Modifier and Type Method Description ObjectChecker
ObjectChecker. setAllowInvalidPersonIdent(boolean allow)
Enable accepting invalid author, committer and tagger identities.ObjectChecker
ObjectChecker. setAllowLeadingZeroFileMode(boolean allow)
Enable accepting leading zero mode in tree entries.ObjectChecker
ObjectChecker. setIgnore(java.util.Set<ObjectChecker.ErrorType> ids)
Configure error types to be ignored across all objects.ObjectChecker
ObjectChecker. setIgnore(ObjectChecker.ErrorType id, boolean ignore)
Add message type to be ignored across all objects.ObjectChecker
ObjectChecker. setSafeForMacOS(boolean mac)
Restrict trees to only names legal on Mac OS X platforms.ObjectChecker
ObjectChecker. setSafeForWindows(boolean win)
Restrict trees to only names legal on Windows platforms.ObjectChecker
ObjectChecker. setSkipList(ObjectIdSet objects)
Enable accepting specific malformed (but not horribly broken) objects. -
Uses of ObjectChecker in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as ObjectChecker Modifier and Type Field Description private ObjectChecker
PackParser. objCheck
(package private) ObjectChecker
WalkFetchConnection. objCheck
If not null the validator for received objects.private ObjectChecker
ReceivePack. objectChecker
Should an incoming transfer validate objects?private ObjectChecker
Transport. objectChecker
Should an incoming (fetch) transfer validate objects?Methods in org.eclipse.jgit.transport that return ObjectChecker Modifier and Type Method Description ObjectChecker
Transport. getObjectChecker()
Get configured object checker for received objectsObjectChecker
TransferConfig. newObjectChecker()
Create checker to verify fetched objectsprivate ObjectChecker
TransferConfig. newObjectChecker(boolean check)
ObjectChecker
TransferConfig. newReceiveObjectChecker()
Create checker to verify objects pushed into this repositoryMethods in org.eclipse.jgit.transport with parameters of type ObjectChecker Modifier and Type Method Description void
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 -
Uses of ObjectChecker in org.eclipse.jgit.util
Fields in org.eclipse.jgit.util declared as ObjectChecker Modifier and Type Field Description private ObjectChecker
SystemReader. platformChecker
-