Package com.sun.jna.platform.win32
Class Winevt.EVT_RPC_LOGIN
- java.lang.Object
-
- com.sun.jna.Structure
-
- com.sun.jna.platform.win32.Winevt.EVT_RPC_LOGIN
-
- Direct Known Subclasses:
Winevt.EVT_RPC_LOGIN.ByReference
,Winevt.EVT_RPC_LOGIN.ByValue
- Enclosing interface:
- Winevt
public static class Winevt.EVT_RPC_LOGIN extends Structure
Contains the information used to connect to a remote computer. https://msdn.microsoft.com/en-us/library/windows/desktop/aa385566(v=vs.85).aspx
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Winevt.EVT_RPC_LOGIN.ByReference
static class
Winevt.EVT_RPC_LOGIN.ByValue
-
Nested classes/interfaces inherited from class com.sun.jna.Structure
Structure.StructField
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
Domain
The domain to which the user account belongs.int
Flags
The authentication method to use to authenticate the user when connecting to the remote computer.java.lang.String
Password
The password for the user account.java.lang.String
Server
The name of the remote computer to connect to.java.lang.String
User
The user name to use to connect to the remote computer.-
Fields inherited from class com.sun.jna.Structure
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
-
-
Constructor Summary
Constructors Constructor Description EVT_RPC_LOGIN()
EVT_RPC_LOGIN(Pointer peer)
EVT_RPC_LOGIN(java.lang.String Server, java.lang.String User, java.lang.String Domain, java.lang.String Password, int Flags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<java.lang.String>
getFieldOrder()
Return this Structure's field names in their proper order.-
Methods inherited from class com.sun.jna.Structure
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
-
-
-
-
Field Detail
-
Server
public java.lang.String Server
The name of the remote computer to connect to.
-
User
public java.lang.String User
The user name to use to connect to the remote computer.
-
Domain
public java.lang.String Domain
The domain to which the user account belongs. Optional.
-
Password
public java.lang.String Password
The password for the user account.
-
Flags
public int Flags
The authentication method to use to authenticate the user when connecting to the remote computer. For possible authentication methods, see theWinevt.EVT_RPC_LOGIN_FLAGS
enumeration.
-
-
Constructor Detail
-
EVT_RPC_LOGIN
public EVT_RPC_LOGIN()
-
EVT_RPC_LOGIN
public EVT_RPC_LOGIN(java.lang.String Server, java.lang.String User, java.lang.String Domain, java.lang.String Password, int Flags)
-
EVT_RPC_LOGIN
public EVT_RPC_LOGIN(Pointer peer)
-
-
Method Detail
-
getFieldOrder
protected java.util.List<java.lang.String> getFieldOrder()
Description copied from class:Structure
Return this Structure's field names in their proper order. For example,
IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.protected List getFieldOrder() { return Arrays.asList(new String[] { ... }); }
Field order must be explicitly indicated, since the field order as returned byprotected List getFieldOrder() { List fields = new ArrayList(super.getFieldOrder()); fields.addAll(Arrays.asList(new String[] { ... })); return fields; }
Class.getFields()
is not guaranteed to be predictable.- Specified by:
getFieldOrder
in classStructure
- Returns:
- ordered list of field names
-
-