All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enterprisemath.utils.messaging.TransportSecurity Maven / Gradle / Ivy

Go to download

Collection of utility classes for large scale projects focusing on robust and testable code.

There is a newer version: 4.1.1
Show newest version
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