package opc.ua.services;

public enum MessageSecurityMode {

	/**
	 * INVALID_0        The MessageSecurityMode is invalid.
         This value is the default value to avoid an accidental choice of no security. 
         This choice will always be rejected.
	 * NONE_1           No security is applied.
	 * SIGN_2           All messages are signed but not encrypted.
	 * SIGNANDENCRYPT_3 All messages are signed and encrypted.
	 */
}
