KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemObjectPath


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * An Object path
8  */

9 @IID("{5791BC27-CE9C-11D1-97BF-0000F81E849C}")
10 public interface ISWbemObjectPath extends Com4jObject {
11     /**
12      * The full path
13      */

14     @VTID(7)
15     java.lang.String JavaDoc path();
16
17     /**
18      * The full path
19      */

20     @VTID(8)
21     void path(
22         java.lang.String JavaDoc strPath);
23
24     /**
25      * The relative path
26      */

27     @VTID(9)
28     java.lang.String JavaDoc relPath();
29
30     /**
31      * The relative path
32      */

33     @VTID(10)
34     void relPath(
35         java.lang.String JavaDoc strRelPath);
36
37     /**
38      * The name of the Server
39      */

40     @VTID(11)
41     java.lang.String JavaDoc server();
42
43     /**
44      * The name of the Server
45      */

46     @VTID(12)
47     void server(
48         java.lang.String JavaDoc strServer);
49
50     /**
51      * The Namespace path
52      */

53     @VTID(13)
54     java.lang.String JavaDoc namespace();
55
56     /**
57      * The Namespace path
58      */

59     @VTID(14)
60     void namespace(
61         java.lang.String JavaDoc strNamespace);
62
63     /**
64      * The parent Namespace path
65      */

66     @VTID(15)
67     java.lang.String JavaDoc parentNamespace();
68
69     /**
70      * The Display Name for this path
71      */

72     @VTID(16)
73     java.lang.String JavaDoc displayName();
74
75     /**
76      * The Display Name for this path
77      */

78     @VTID(17)
79     void displayName(
80         java.lang.String JavaDoc strDisplayName);
81
82     /**
83      * The Class name
84      */

85     @VTID(18)
86     java.lang.String JavaDoc _class();
87
88     /**
89      * The Class name
90      */

91     @VTID(19)
92     void _class(
93         java.lang.String JavaDoc strClass);
94
95     /**
96      * Indicates whether this path addresses a Class
97      */

98     @VTID(20)
99     boolean isClass();
100
101     /**
102      * Coerce this path to address a Class
103      */

104     @VTID(21)
105     void setAsClass();
106
107     /**
108      * Indicates whether this path addresses a Singleton Instance
109      */

110     @VTID(22)
111     boolean isSingleton();
112
113     /**
114      * Coerce this path to address a Singleton Instance
115      */

116     @VTID(23)
117     void setAsSingleton();
118
119     /**
120      * The collection of Key value bindings for this path
121      */

122     @VTID(24)
123     ISWbemNamedValueSet keys();
124
125     /**
126      * Defines the security components of this path
127      */

128     @VTID(25)
129     ISWbemSecurity security_();
130
131     /**
132      * Defines locale component of this path
133      */

134     @VTID(26)
135     java.lang.String JavaDoc locale();
136
137     /**
138      * Defines locale component of this path
139      */

140     @VTID(27)
141     void locale(
142         java.lang.String JavaDoc strLocale);
143
144     /**
145      * Defines authentication authority component of this path
146      */

147     @VTID(28)
148     java.lang.String JavaDoc authority();
149
150     /**
151      * Defines authentication authority component of this path
152      */

153     @VTID(29)
154     void authority(
155         java.lang.String JavaDoc strAuthority);
156
157 }
158
Popular Tags