Class: TurboRex::Windows::Security::AccessDeniedACE
- Defined in:
- lib/turborex/windows/security/ace.rb
Instance Attribute Summary collapse
-
#mask ⇒ Object
readonly
Returns the value of attribute mask.
-
#short ⇒ Object
readonly
Returns the value of attribute short.
-
#sid ⇒ Object
readonly
Returns the value of attribute sid.
Attributes inherited from ACE
Instance Method Summary collapse
-
#initialize(mask, sid, flags, type = TurboRex::Windows::Constants::ACCESS_DENIED_ACE_TYPE) ⇒ AccessDeniedACE
constructor
A new instance of AccessDeniedACE.
Methods inherited from ACE
Constructor Details
#initialize(mask, sid, flags, type = TurboRex::Windows::Constants::ACCESS_DENIED_ACE_TYPE) ⇒ AccessDeniedACE
Returns a new instance of AccessDeniedACE.
54 55 56 57 58 59 |
# File 'lib/turborex/windows/security/ace.rb', line 54 def initialize(mask, sid, flags, type=TurboRex::Windows::Constants::ACCESS_DENIED_ACE_TYPE) @mask = mask @sid = sid @short = :denied super(type, flags) end |
Instance Attribute Details
#mask ⇒ Object (readonly)
Returns the value of attribute mask.
50 51 52 |
# File 'lib/turborex/windows/security/ace.rb', line 50 def mask @mask end |
#short ⇒ Object (readonly)
Returns the value of attribute short.
52 53 54 |
# File 'lib/turborex/windows/security/ace.rb', line 52 def short @short end |
#sid ⇒ Object (readonly)
Returns the value of attribute sid.
51 52 53 |
# File 'lib/turborex/windows/security/ace.rb', line 51 def sid @sid end |