Package org.conscrypt
Class ContentType
java.lang.Object
org.conscrypt.ContentType
public class ContentType extends Object
This class incapsulates the constants determining the
types of SSL/TLS record's content data.
Constant values are taken according to the TLS v1 specification
(http://www.ietf.org/rfc/rfc2246.txt).
-
Field Summary
Fields Modifier and Type Field Description protected static byteALERTIdentifies alert messageprotected static byteAPPLICATION_DATAIdentifies application data messageprotected static byteCHANGE_CIPHER_SPECIdentifies change cipher spec messageprotected static byteHANDSHAKEIdentifies handshake message -
Constructor Summary
Constructors Constructor Description ContentType() -
Method Summary
-
Field Details
-
CHANGE_CIPHER_SPEC
protected static final byte CHANGE_CIPHER_SPECIdentifies change cipher spec message- See Also:
- Constant Field Values
-
ALERT
protected static final byte ALERTIdentifies alert message- See Also:
- Constant Field Values
-
HANDSHAKE
protected static final byte HANDSHAKEIdentifies handshake message- See Also:
- Constant Field Values
-
APPLICATION_DATA
protected static final byte APPLICATION_DATAIdentifies application data message- See Also:
- Constant Field Values
-
-
Constructor Details
-
ContentType
public ContentType()
-