
com.enterprisemath.utils.messaging.TransportSecurity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-utils Show documentation
Show all versions of em-utils Show documentation
Collection of utility classes for large scale projects focusing on robust and testable code.
package com.enterprisemath.utils.messaging;
/**
* Enumerates the security ways during message transport.
*
* @author radek.hecl
*
*/
public enum TransportSecurity {
/**
* None security is required. This is allowed only for development purposes.
* No body can use this in production.
*/
NONE,
/**
* Security is done by SSL protocol.
*/
SSL,
/**
* Security is done by TLS protocol.
*/
TLS
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy