Where is TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA Cipher Suite

I can not find the standard TLS Cipher Suite:

TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA

used in IMAP. I've looked all over the place and I can not seem to find it. There is a SSL version, but not a TLS. I need to find this suite as I am programming an IMAP server. I am using J2SE version 6.

Was this Cipher Suite accidentally left out? I know all the components are there; is there a way for me to add a Cipher Suite for that combination without having to rewrite everything?

[494 byte] By [joeysr20deta] at [2007-11-27 0:07:34]
# 1
TLS 1.0 is very close to SSL 3.0 . I suspect that that the TLS Cipher suit will actually be the same as the SSL one.
sabre150a at 2007-7-11 16:06:02 > top of Java-index,Core,Core APIs...
# 2
Thats what I've read that somewhere. My problem is though, even when I directly enable the SSL version, I still get a no common encryption algs found.The problem is the TLS and SSL version have different hex values, so to the client they are two different cipher suites.
joeysr20deta at 2007-7-11 16:06:02 > top of Java-index,Core,Core APIs...
# 3

That's odd, they should both have the value 0x0013. If you specify "TLS" as the protocol, JSSE is bound to support TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA according to RFC 2246, it is the one mandatory protocol. However that string doesn't seem to appear in Sun's JSSE sources.

I would have thought both the TLS_ and SSL_ names named the same thing.

ejpa at 2007-7-11 16:06:02 > top of Java-index,Core,Core APIs...