PLCnext API Documentation 23.6.0.37
SecurityConfigurationError.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace System { namespace Commons { namespace Security
11{
12
13enum class SecurityConfigurationError : uint8
14{
15 None = 0,
16 StoreNotFound = 1,
17 ItemNotFound = 2,
18 IOError = 3,
19 ListTypeNotSupported = 4,
20 DecodeError = 5,
21 NotImplemented = 6,
22 KeyTypeNotSupported = 7,
23 ReadOnly = 8,
24 UnknownError = 9,
25 StoreExists = 10,
26};
27
29// global stream operators of enum SecurityConfigurationError for logging and parsing
30ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, SecurityConfigurationError value);
31ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, SecurityConfigurationError& value);
32
33}}}} // end of namespace Arp::System::Commons::Security
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
@ System
System components used by the System, Device, Plc or Io domains.
@ DecodeError
A message could not be decoded because some field was out of the specified range or the length of the...
Root namespace for the PLCnext API