WinNT.ACCESS_ALLOWED_ACE
, WinNT.ACCESS_DENIED_ACE
public abstract static class WinNT.ACCESS_ACEStructure extends WinNT.ACEStructure
Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
static java.util.List<java.lang.String> |
FIELDS |
|
int |
Mask |
|
byte[] |
SidStart |
First 4 bytes of the SID
Only used to have a valid field defined - use sid!
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
AceFlags, AceSize, AceType, psid
Constructor | Description |
---|---|
ACCESS_ACEStructure() |
|
ACCESS_ACEStructure(int Mask,
byte AceType,
byte AceFlags,
WinNT.PSID psid) |
|
ACCESS_ACEStructure(Pointer p) |
Modifier and Type | Method | Description |
---|---|---|
protected java.util.List<java.lang.String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
void |
read() |
Reads the fields of the struct from native memory
|
void |
write() |
Write override due to psid not being a managed field
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, writeField, writeField, writeField
getSID, getSidString
public static final java.util.List<java.lang.String> FIELDS
public int Mask
public byte[] SidStart
public ACCESS_ACEStructure()
public ACCESS_ACEStructure(int Mask, byte AceType, byte AceFlags, WinNT.PSID psid)
public ACCESS_ACEStructure(Pointer p)
public void write()
public void read()
Structure
protected java.util.List<java.lang.String> getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class WinNT.ACEStructure