Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MaximumAuthority.cs
2{
7 {
12 public MaximumAuthority(string From)
13 : base(From)
14 {
15 }
16
24 public MaximumAuthority(string From, string[] DeviceTokens, string[] ServiceTokens,
25 string[] UserTokens)
26 : base(From, DeviceTokens, ServiceTokens, UserTokens)
27 {
28 }
29
35 public override bool HasPrivilege(string Privilege)
36 {
37 return true;
38 }
39 }
40}
Abstract base class for authorities.
Definition: Authority.cs:9
Origin of request has maximum authority.
MaximumAuthority(string From, string[] DeviceTokens, string[] ServiceTokens, string[] UserTokens)
Origin of request has maximum authority.
MaximumAuthority(string From)
Origin of request has maximum authority.
override bool HasPrivilege(string Privilege)
If the origin has a given privilege.