DsGetDC.DOMAIN_CONTROLLER_INFO.ByReference
public static class DsGetDC.DOMAIN_CONTROLLER_INFO extends Structure
Modifier and Type | Class | Description |
---|---|---|
static class |
DsGetDC.DOMAIN_CONTROLLER_INFO.ByReference |
Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
java.lang.String |
ClientSiteName |
Pointer to a null-terminated string that specifies the name of the
site that the computer belongs to.
|
java.lang.String |
DcSiteName |
Pointer to a null-terminated string that specifies the name of the
site where the domain controller is located.
|
java.lang.String |
DnsForestName |
Pointer to a null-terminated string that specifies the name of the
domain at the root of the DS tree.
|
java.lang.String |
DomainControllerAddress |
Pointer to a null-terminated string that specifies the address of
the discovered domain controller.
|
int |
DomainControllerAddressType |
Indicates the type of string that is contained in the
DomainControllerAddress member.
|
java.lang.String |
DomainControllerName |
Pointer to a null-terminated string that specifies the computer name
of the discovered domain controller.
|
Guid.GUID |
DomainGuid |
The GUID of the domain.
|
java.lang.String |
DomainName |
Pointer to a null-terminated string that specifies the name of the
domain.
|
static java.util.List<java.lang.String> |
FIELDS |
|
int |
Flags |
Contains a set of flags that describe the domain controller.
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
DOMAIN_CONTROLLER_INFO() |
|
DOMAIN_CONTROLLER_INFO(Pointer memory) |
Modifier and Type | Method | Description |
---|---|---|
protected java.util.List<java.lang.String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
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, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public static final java.util.List<java.lang.String> FIELDS
public java.lang.String DomainControllerName
public java.lang.String DomainControllerAddress
public int DomainControllerAddressType
public Guid.GUID DomainGuid
public java.lang.String DomainName
public java.lang.String DnsForestName
public int Flags
public java.lang.String DcSiteName
public java.lang.String ClientSiteName
public DOMAIN_CONTROLLER_INFO()
public DOMAIN_CONTROLLER_INFO(Pointer memory)
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 Structure