SELinuxOptions class

SELinuxOptions are the labels to be applied to the container.

Constructors

SELinuxOptions({String? level, String? role, String? type, String? user})
The main constructor.
const
SELinuxOptions.fromJson(Map<String, dynamic> json)
Creates a SELinuxOptions from JSON data.

Properties

hashCode int
The hash code for this object.
no setterinherited
level String?
Level is SELinux level label that applies to the container.
final
role String?
Role is a SELinux role label that applies to the container.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String?
Type is a SELinux type label that applies to the container.
final
user String?
User is a SELinux user label that applies to the container.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a SELinuxOptions instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

listFromJson(Iterable<Map<String, dynamic>> list) List<SELinuxOptions>
Creates a list of SELinuxOptions from JSON data.