KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemSecurity


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * A Security Configurator
8  */

9 @IID("{B54D66E6-2287-11D2-8B33-00600806D9B6}")
10 public interface ISWbemSecurity extends Com4jObject {
11     /**
12      * The security impersonation level
13      */

14     @VTID(7)
15     WbemImpersonationLevelEnum impersonationLevel();
16
17     /**
18      * The security impersonation level
19      */

20     @VTID(8)
21     void impersonationLevel(
22         WbemImpersonationLevelEnum iImpersonationLevel);
23
24     /**
25      * The security authentication level
26      */

27     @VTID(9)
28     WbemAuthenticationLevelEnum authenticationLevel();
29
30     /**
31      * The security authentication level
32      */

33     @VTID(10)
34     void authenticationLevel(
35         WbemAuthenticationLevelEnum iAuthenticationLevel);
36
37     /**
38      * The collection of privileges for this object
39      */

40     @VTID(11)
41     ISWbemPrivilegeSet privileges();
42
43 }
44
Popular Tags