Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PolicyObject.cs
2{
6 public abstract class PolicyObject : SecurityObject
7 {
8 private Vector? configuration;
9
13 public override bool IsConfigured => this.configuration is not null;
14
20 public override bool Configure(Vector SecurityInfo)
21 {
22 this.configuration = SecurityInfo;
23 return true;
24 }
25 }
26}
override bool Configure(Vector SecurityInfo)
If the object can be configured by the security information provided.
Definition: PolicyObject.cs:20
override bool IsConfigured
If the object has been configured.
Definition: PolicyObject.cs:13
Abstract base class for security objects.