Package org.eclipse.jgit.transport
Class UserAgent
java.lang.Object
org.eclipse.jgit.transport.UserAgent
User agent to be reported by this JGit client and server on the network.
On HTTP transports this user agent string is always supplied by the JGit
client in the User-Agent
HTTP header.
On native transports this user agent string is always sent when JGit is a server. When JGit is a client the user agent string will be supplied to the remote server only if the remote server advertises its own agent identity.
- Since:
- 4.0
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static String
private static String
private static String
static String
get()
Get the user agent string advertised by JGit.(package private) static String
(package private) static boolean
static void
Change the user agent string advertised by JGit.
-
Field Details
-
userAgent
-
-
Constructor Details
-
UserAgent
private UserAgent()
-
-
Method Details
-
computeUserAgent
-
computeVersion
-
clean
-
get
Get the user agent string advertised by JGit.- Returns:
- a string similar to
"JGit/4.0"
; null if the agent has been cleared and should not be shared with a peer.
-
set
Change the user agent string advertised by JGit.The new string should start with
"JGit/"
(for example"JGit/4.0"
) to advertise the implementation as JGit based.Spaces and other whitespace should be avoided as these will be automatically converted to
"."
.User agent strings are restricted to printable ASCII.
- Parameters:
agent
- new user agent string for this running JGit library. Setting to null or empty string will avoid sending any identification to the peer.
-
getAgent
-
hasAgent
-