namespace ZB.MOM.WW.OtOpcUa.Host.Domain { /// /// Stable identifiers for custom OPC UA roles mapped from LDAP groups. /// The namespace URI is registered in the server namespace table at startup, /// and the string identifiers are resolved to runtime NodeIds before use. /// public static class LmxRoleIds { public const string NamespaceUri = "urn:zbmom:lmxopcua:roles"; public const string ReadOnly = "Role.ReadOnly"; public const string WriteOperate = "Role.WriteOperate"; public const string WriteTune = "Role.WriteTune"; public const string WriteConfigure = "Role.WriteConfigure"; public const string AlarmAck = "Role.AlarmAck"; } }