KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > WbemImpersonationLevelEnum


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * Defines the security impersonation level
8  */

9 public enum WbemImpersonationLevelEnum implements ComEnum {
10     wbemImpersonationLevelAnonymous(1),
11     wbemImpersonationLevelIdentify(2),
12     wbemImpersonationLevelImpersonate(3),
13     wbemImpersonationLevelDelegate(4),
14     ;
15
16     private final int value;
17     WbemImpersonationLevelEnum(int value) { this.value=value; }
18     public int comEnumValue() { return value; }
19 }
20
Popular Tags