Files
ScadaBridge/src/ZB.MOM.WW.ScadaBridge.DataConnectionLayer/OpcUaGlobalOptions.cs
T
Joseph Doherty 7b0b9c7365 refactor: rename ScadaLink → ZB.MOM.WW.ScadaBridge (code + projects + namespaces)
Solution + 23 src projects + 26 test projects renamed; folders, csproj,
namespaces, and ScadaLinkDbContext/ScadaBridgeDbContext class updated.
ActorSystem "scadalink" → "scadabridge", Akka seed-node URLs migrated.
SQL roles/logins, LDAP domains, CLI command name, and CLI config dir
(~/.scadalink → ~/.scadabridge) also renamed.

Build green; 5 Host.Tests fail awaiting SQL login rename in next commit.
Pre-existing StaleTagMonitor timing flakes unchanged.

Rename script committed at tools/rename-to-scadabridge.sh.
2026-05-28 09:37:45 -04:00

20 lines
1008 B
C#

namespace ZB.MOM.WW.ScadaBridge.DataConnectionLayer;
/// <summary>
/// Deployment-wide OPC UA application identity. Bound from the "OpcUa" section
/// of appsettings.json. Per-endpoint behavior lives on OpcUaEndpointConfig.
/// Empty paths fall back to a default under Path.GetTempPath() so dev runs
/// work without explicit configuration.
/// </summary>
public class OpcUaGlobalOptions
{
/// <summary>OPC UA application name used in the application certificate and session negotiation.</summary>
public string ApplicationName { get; set; } = "ScadaBridge-DCL";
/// <summary>File system path to the trusted issuer certificate store.</summary>
public string TrustedIssuerStorePath { get; set; } = "";
/// <summary>File system path to the trusted peer certificate store.</summary>
public string TrustedPeerStorePath { get; set; } = "";
/// <summary>File system path to the rejected certificate store.</summary>
public string RejectedCertificateStorePath { get; set; } = "";
}