Does JSSE implementation of TLSv1 falls back to SSLv3 or SSLv2 if server re

Does JSSE implementation of TLSv1 falls back to SSLv3 or SSLv2 if server requests.

I am planning to use TLSv3 protocol for our SSL client implementation. My worry is if I use TLSv3 which being the latest and the new standard, does the Sun's JSSE implementation fallsback to SSLv3 or SSLv2 if the server doesn't accept TLS.

Can anyone let me know and point me to the right link.

This highly required as I am not sure what clients use their webserver as.

[479 byte] By [raj_vissaa] at [2007-11-26 19:29:49]
# 1
If you specify 'TLS' you will get TLS, if you specify 'SSL' you will get TLS or a fallback to SSLV3. You'll never get a fallback to SSLv2 because Sun doesn't support SSLv2 at all except for the initial Hello message.
ejpa at 2007-7-9 21:58:34 > top of Java-index,Security,Java Secure Socket Extension (JSSE)...