|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||
java.lang.Objectjava.lang.Enum<WbemAuthenticationLevelEnum>
cn.chenlichao.wmi4j.consts.WbemAuthenticationLevelEnum
public enum WbemAuthenticationLevelEnum
Define the security authentication levels. These constants are used with SWbemSecurity and in moniker connections to WMI.
Created by chenlichao on 14-7-28.
| 枚举常量摘要 | |
|---|---|
Call
3(0x3): Authenticates only at the beginning of each call when the server receives the request. |
|
Connect
2(0x2): Authenticates the credentials of the client only when the client establishes a relationship with the server. |
|
Default
0(0x0): WMI uses the default Windows Authentication setting. |
|
None
1(0x1): Uses no authentication. |
|
Pkt
4(0x4): Authenticates that all data received is from the expected client. |
|
PktIntegrity
5(0x5): Authenticates and verifies that none of the data transferred between client and server has been modified. |
|
PktPrivacy
6(0x6): Authenticates all previous impersonation levels and encrypts the argument value of each remote procedure call. |
|
| 方法摘要 | |
|---|---|
int |
getValue()
|
static WbemAuthenticationLevelEnum |
parse(int value)
|
static WbemAuthenticationLevelEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。 |
static WbemAuthenticationLevelEnum[] |
values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。 |
| 从类 java.lang.Enum 继承的方法 |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| 从类 java.lang.Object 继承的方法 |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| 枚举常量详细信息 |
|---|
public static final WbemAuthenticationLevelEnum Default
public static final WbemAuthenticationLevelEnum None
public static final WbemAuthenticationLevelEnum Connect
public static final WbemAuthenticationLevelEnum Call
public static final WbemAuthenticationLevelEnum Pkt
public static final WbemAuthenticationLevelEnum PktIntegrity
public static final WbemAuthenticationLevelEnum PktPrivacy
| 方法详细信息 |
|---|
public static WbemAuthenticationLevelEnum[] values()
for (WbemAuthenticationLevelEnum c : WbemAuthenticationLevelEnum.values()) System.out.println(c);
public static WbemAuthenticationLevelEnum valueOf(String name)
name - 要返回的枚举常量的名称。
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentExceptionpublic int getValue()
public static WbemAuthenticationLevelEnum parse(int value)
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||