Class SecurityLevelConfig
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.auth.security.level.SecurityLevelConfig
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class SecurityLevelConfig extends java.lang.Object implements java.io.SerializableA SecurityLevelConfig is a node on a security level tree which encapsulates the node's name, its description, and its children.- See Also:
- SecurityLevelConfig.GsonAdapter, Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classSecurityLevelConfig.GsonAdapterSupport for Gson serialization and deserialization
 - 
Field SummaryFields Modifier and Type Field Description static com.inductiveautomation.ignition.common.gson.GsonGSON
 - 
Constructor SummaryConstructors Constructor Description SecurityLevelConfig(java.lang.String name)SecurityLevelConfig(java.lang.String name, java.lang.String description, com.google.common.collect.ImmutableCollection<SecurityLevelConfig> children)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)static java.util.Optional<SecurityLevelConfig>find(com.google.common.collect.ImmutableCollection<SecurityLevelConfig> children, java.lang.String... path)java.util.Optional<SecurityLevelConfig>find(java.lang.String... path)static SecurityLevelConfigfromJson(java.lang.String s)static SecurityLevelConfigfromJsonTree(com.inductiveautomation.ignition.common.gson.JsonElement jsonElement)static com.google.common.collect.ImmutableSet<SecurityLevelConfig>fromPaths(java.lang.String[]... paths)Merges an arbitrary number of security level paths into a security level tree according to the merging behavior specified bymerge(SecurityLevelConfig...).com.google.common.collect.ImmutableSet<SecurityLevelConfig>getChildren()java.lang.StringgetDescription()java.lang.StringgetName()inthashCode()static com.google.common.collect.ImmutableSet<SecurityLevelConfig>merge(SecurityLevelConfig... configs)Given n number ofSecurityLevelConfigs, merges them together such that for each duplicate security level (identified based on the security level name), the duplicates are merged so the resulting security level has the duplicate name, the description of the last duplicate security level in the given array, and children resulting from recursively merging them together using this method.java.lang.StringtoJson()com.inductiveautomation.ignition.common.gson.JsonElementtoJsonTree()java.lang.String[][]toPaths()java.lang.StringtoString()
 
- 
- 
- 
Constructor Detail- 
SecurityLevelConfigpublic SecurityLevelConfig(java.lang.String name) 
 - 
SecurityLevelConfigpublic SecurityLevelConfig(java.lang.String name, java.lang.String description, com.google.common.collect.ImmutableCollection<SecurityLevelConfig> children)
 
- 
 - 
Method Detail- 
getNamepublic java.lang.String getName() 
 - 
getDescriptionpublic java.lang.String getDescription() 
 - 
getChildrenpublic com.google.common.collect.ImmutableSet<SecurityLevelConfig> getChildren() 
 - 
findpublic static java.util.Optional<SecurityLevelConfig> find(com.google.common.collect.ImmutableCollection<SecurityLevelConfig> children, java.lang.String... path) 
 - 
findpublic java.util.Optional<SecurityLevelConfig> find(java.lang.String... path) 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
fromJsonpublic static SecurityLevelConfig fromJson(java.lang.String s) 
 - 
fromJsonTreepublic static SecurityLevelConfig fromJsonTree(com.inductiveautomation.ignition.common.gson.JsonElement jsonElement) 
 - 
toJsonpublic java.lang.String toJson() 
 - 
toJsonTreepublic com.inductiveautomation.ignition.common.gson.JsonElement toJsonTree() 
 - 
mergepublic static com.google.common.collect.ImmutableSet<SecurityLevelConfig> merge(SecurityLevelConfig... configs) Given n number ofSecurityLevelConfigs, merges them together such that for each duplicate security level (identified based on the security level name), the duplicates are merged so the resulting security level has the duplicate name, the description of the last duplicate security level in the given array, and children resulting from recursively merging them together using this method. All nullSecurityLevelConfigs are ignored.- Parameters:
- configs- the- SecurityLevelConfigsto merge
- Returns:
- the merged ImmutableSetofSecurityLevelConfigs
 
 - 
fromPathspublic static com.google.common.collect.ImmutableSet<SecurityLevelConfig> fromPaths(java.lang.String[]... paths) Merges an arbitrary number of security level paths into a security level tree according to the merging behavior specified by merge(SecurityLevelConfig...).Each security level path is represented as a Stringarray where the element at position n represents the name of the node at level n + 1 of a security level sub-tree under the root public node containing only the nodes specified in the path.The resultant security level tree is represented as an ImmutableSetofSecurityLevelConfigs where each member of the collection is:- A direct child of the implied root Public security level
- Itself the root of a security level sub-tree
 Any null paths or paths with no elements are ignored. - Parameters:
- paths- the security levels paths to merge
- Returns:
- the security level tree
- See Also:
- merge(SecurityLevelConfig...)
 
 - 
toPathspublic java.lang.String[][] toPaths() - Returns:
- a flattened array of security level paths from the root node of this security level config tree to the leaf nodes
 
 
- 
 
-