-
Notifications
You must be signed in to change notification settings - Fork 0
/
javax.management.d.ts
1046 lines (639 loc) · 26 KB
/
javax.management.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/// <reference path="java.lang.reflect.d.ts" />
/// <reference path="java.security.d.ts" />
/// <reference path="java.lang.d.ts" />
/// <reference path="java.util.d.ts" />
/// <reference path="java.io.d.ts" />
/// <reference path="java.util.concurrent.d.ts" />
/// <reference path="javax.management.loading.d.ts" />
declare module '@afterburnerhq/javax.management' {
import { InvocationHandler, Constructor, Method } from '@afterburnerhq/java.lang.reflect'
import { Permission, BasicPermission, PermissionCollection } from '@afterburnerhq/java.security'
import { Integer, Comparable, RuntimeException, Number, ClassLoader, Throwable, Error, Class, Cloneable, String, Boolean, Exception } from '@afterburnerhq/java.lang'
import { Set, Hashtable, ArrayList, Collection, List, EventListener, Vector, Map, EventObject } from '@afterburnerhq/java.util'
import { Serializable, ObjectInputStream } from '@afterburnerhq/java.io'
import { Executor } from '@afterburnerhq/java.util.concurrent'
import { ClassLoaderRepository } from '@afterburnerhq/javax.management.loading'
export class Attribute implements Serializable {
constructor(arg0: String, arg1: Object);
getName(): String;
getValue(): Object;
equals(arg0: Object): boolean;
hashCode(): number;
toString(): string;
}
export class AttributeChangeNotification extends Notification {
static ATTRIBUTE_CHANGE:String
constructor(arg0: Object, arg1: number, arg2: number, arg3: String, arg4: String, arg5: String, arg6: Object, arg7: Object);
getAttributeName(): String;
getAttributeType(): String;
getOldValue(): Object;
getNewValue(): Object;
}
export class AttributeChangeNotificationFilter implements NotificationFilter {
constructor();
isNotificationEnabled(arg0: Notification): boolean;
enableAttribute(arg0: String): void;
disableAttribute(arg0: String): void;
disableAllAttributes(): void;
getEnabledAttributes(): Vector<String>;
}
export interface AttributeList { }
export class AttributeList extends ArrayList<Object> {
constructor();
constructor(arg0: number);
constructor(arg0: AttributeList);
constructor(arg0: List<Attribute>);
asList(): List<Attribute>;
add(arg0: Attribute): void;
add(arg0: number, arg1: Attribute): void;
set(arg0: number, arg1: Attribute): void;
addAll(arg0: AttributeList): boolean;
addAll(arg0: number, arg1: AttributeList): boolean;
add(arg0: Object): boolean;
add(arg0: number, arg1: Object): void;
addAll(arg0: Collection<any>): boolean;
addAll(arg0: number, arg1: Collection<any>): boolean;
set(arg0: number, arg1: Object): Object;
}
export class AttributeNotFoundException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class AttributeValueExp implements ValueExp {
constructor();
constructor(arg0: String);
getAttributeName(): String;
apply(arg0: ObjectName): ValueExp;
toString(): string;
setMBeanServer(arg0: MBeanServer): void;
}
export class BadAttributeValueExpException extends Exception {
constructor(arg0: Object);
toString(): string;
}
export class BadBinaryOpValueExpException extends Exception {
constructor(arg0: ValueExp);
getExp(): ValueExp;
toString(): string;
}
export class BadStringOperationException extends Exception {
constructor(arg0: String);
toString(): string;
}
export class DefaultLoaderRepository {
constructor();
static loadClass(arg0: String): Class<any>;
static loadClassWithout(arg0: ClassLoader, arg1: String): Class<any>;
}
export interface Descriptor extends Serializable, Cloneable {
getFieldValue(arg0: String): Object;
setField(arg0: String, arg1: Object): void;
getFields(): String[];
getFieldNames(): String[];
getFieldValues(arg0: String[]): Object[];
removeField(arg0: String): void;
setFields(arg0: String[], arg1: Object[]): void;
clone(): Object;
isValid(): boolean;
equals(arg0: Object): boolean;
hashCode(): number;
}
export interface DescriptorAccess extends DescriptorRead {
setDescriptor(arg0: Descriptor): void;
}
export interface DescriptorRead {
getDescriptor(): Descriptor;
}
export interface DynamicMBean {
getAttribute(arg0: String): Object;
setAttribute(arg0: Attribute): void;
getAttributes(arg0: String[]): AttributeList;
setAttributes(arg0: AttributeList): AttributeList;
invoke(arg0: String, arg1: Object[], arg2: String[]): Object;
getMBeanInfo(): MBeanInfo;
}
export class ImmutableDescriptor implements Descriptor {
static EMPTY_DESCRIPTOR:ImmutableDescriptor
constructor(arg0: String[], arg1: Object[]);
constructor(arg0: String[]);
constructor(arg0: Map<String, any>);
static union(arg0: Descriptor[]): ImmutableDescriptor;
getFieldValue(arg0: String): Object;
getFields(): String[];
getFieldValues(arg0: String[]): Object[];
getFieldNames(): String[];
equals(arg0: Object): boolean;
hashCode(): number;
toString(): string;
isValid(): boolean;
clone(): Descriptor;
setFields(arg0: String[], arg1: Object[]): void;
setField(arg0: String, arg1: Object): void;
removeField(arg0: String): void;
}
export class InstanceAlreadyExistsException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class InstanceNotFoundException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class IntrospectionException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class InvalidApplicationException extends Exception {
constructor(arg0: Object);
}
export class InvalidAttributeValueException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class JMException extends Exception {
constructor();
constructor(arg0: String);
}
export class JMRuntimeException extends RuntimeException {
constructor();
constructor(arg0: String);
}
export class JMX {
static DEFAULT_VALUE_FIELD:String
static IMMUTABLE_INFO_FIELD:String
static INTERFACE_CLASS_NAME_FIELD:String
static LEGAL_VALUES_FIELD:String
static MAX_VALUE_FIELD:String
static MIN_VALUE_FIELD:String
static MXBEAN_FIELD:String
static OPEN_TYPE_FIELD:String
static ORIGINAL_TYPE_FIELD:String
static newMBeanProxy<T extends Object>(arg0: MBeanServerConnection, arg1: ObjectName, arg2: Class<T>): T;
static newMBeanProxy<T extends Object>(arg0: MBeanServerConnection, arg1: ObjectName, arg2: Class<T>, arg3: boolean): T;
static newMXBeanProxy<T extends Object>(arg0: MBeanServerConnection, arg1: ObjectName, arg2: Class<T>): T;
static newMXBeanProxy<T extends Object>(arg0: MBeanServerConnection, arg1: ObjectName, arg2: Class<T>, arg3: boolean): T;
static isMXBeanInterface(arg0: Class<any>): boolean;
}
export class ListenerNotFoundException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class MBeanAttributeInfo extends MBeanFeatureInfo implements Cloneable {
constructor(arg0: String, arg1: String, arg2: String, arg3: boolean, arg4: boolean, arg5: boolean);
constructor(arg0: String, arg1: String, arg2: String, arg3: boolean, arg4: boolean, arg5: boolean, arg6: Descriptor);
constructor(arg0: String, arg1: String, arg2: Method, arg3: Method);
clone(): Object;
getType(): String;
isReadable(): boolean;
isWritable(): boolean;
isIs(): boolean;
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanConstructorInfo extends MBeanFeatureInfo implements Cloneable {
constructor(arg0: String, arg1: Constructor<any>);
constructor(arg0: String, arg1: String, arg2: MBeanParameterInfo[]);
constructor(arg0: String, arg1: String, arg2: MBeanParameterInfo[], arg3: Descriptor);
clone(): Object;
getSignature(): MBeanParameterInfo[];
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanException extends JMException {
constructor(arg0: Exception);
constructor(arg0: Exception, arg1: String);
getTargetException(): Exception;
getCause(): Throwable;
}
export class MBeanFeatureInfo implements Serializable, DescriptorRead {
constructor(arg0: String, arg1: String);
constructor(arg0: String, arg1: String, arg2: Descriptor);
getName(): String;
getDescription(): String;
getDescriptor(): Descriptor;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanInfo implements Cloneable, Serializable, DescriptorRead {
constructor(arg0: String, arg1: String, arg2: MBeanAttributeInfo[], arg3: MBeanConstructorInfo[], arg4: MBeanOperationInfo[], arg5: MBeanNotificationInfo[]);
constructor(arg0: String, arg1: String, arg2: MBeanAttributeInfo[], arg3: MBeanConstructorInfo[], arg4: MBeanOperationInfo[], arg5: MBeanNotificationInfo[], arg6: Descriptor);
clone(): Object;
getClassName(): String;
getDescription(): String;
getAttributes(): MBeanAttributeInfo[];
getOperations(): MBeanOperationInfo[];
getConstructors(): MBeanConstructorInfo[];
getNotifications(): MBeanNotificationInfo[];
getDescriptor(): Descriptor;
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanNotificationInfo extends MBeanFeatureInfo implements Cloneable {
constructor(arg0: String[], arg1: String, arg2: String);
constructor(arg0: String[], arg1: String, arg2: String, arg3: Descriptor);
clone(): Object;
getNotifTypes(): String[];
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanOperationInfo extends MBeanFeatureInfo implements Cloneable {
static INFO:number
static ACTION:number
static ACTION_INFO:number
static UNKNOWN:number
constructor(arg0: String, arg1: Method);
constructor(arg0: String, arg1: String, arg2: MBeanParameterInfo[], arg3: String, arg4: number);
constructor(arg0: String, arg1: String, arg2: MBeanParameterInfo[], arg3: String, arg4: number, arg5: Descriptor);
clone(): Object;
getReturnType(): String;
getSignature(): MBeanParameterInfo[];
getImpact(): number;
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanParameterInfo extends MBeanFeatureInfo implements Cloneable {
constructor(arg0: String, arg1: String, arg2: String);
constructor(arg0: String, arg1: String, arg2: String, arg3: Descriptor);
clone(): Object;
getType(): String;
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
}
export class MBeanPermission extends Permission {
constructor(arg0: String, arg1: String);
constructor(arg0: String, arg1: String, arg2: ObjectName, arg3: String);
getActions(): String;
hashCode(): number;
implies(arg0: Permission): boolean;
equals(arg0: Object): boolean;
}
export interface MBeanRegistration {
preRegister(arg0: MBeanServer, arg1: ObjectName): ObjectName;
postRegister(arg0: Boolean): void;
preDeregister(): void;
postDeregister(): void;
}
export class MBeanRegistrationException extends MBeanException {
constructor(arg0: Exception);
constructor(arg0: Exception, arg1: String);
}
export interface MBeanServer extends MBeanServerConnection {
createMBean(arg0: String, arg1: ObjectName): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: ObjectName): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: Object[], arg3: String[]): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: ObjectName, arg3: Object[], arg4: String[]): ObjectInstance;
registerMBean(arg0: Object, arg1: ObjectName): ObjectInstance;
unregisterMBean(arg0: ObjectName): void;
getObjectInstance(arg0: ObjectName): ObjectInstance;
queryMBeans(arg0: ObjectName, arg1: QueryExp): Set<ObjectInstance>;
queryNames(arg0: ObjectName, arg1: QueryExp): Set<ObjectName>;
isRegistered(arg0: ObjectName): boolean;
getMBeanCount(): Number;
getAttribute(arg0: ObjectName, arg1: String): Object;
getAttributes(arg0: ObjectName, arg1: String[]): AttributeList;
setAttribute(arg0: ObjectName, arg1: Attribute): void;
setAttributes(arg0: ObjectName, arg1: AttributeList): AttributeList;
invoke(arg0: ObjectName, arg1: String, arg2: Object[], arg3: String[]): Object;
getDefaultDomain(): String;
getDomains(): String[];
addNotificationListener(arg0: ObjectName, arg1: NotificationListener, arg2: NotificationFilter, arg3: Object): void;
addNotificationListener(arg0: ObjectName, arg1: ObjectName, arg2: NotificationFilter, arg3: Object): void;
removeNotificationListener(arg0: ObjectName, arg1: ObjectName): void;
removeNotificationListener(arg0: ObjectName, arg1: ObjectName, arg2: NotificationFilter, arg3: Object): void;
removeNotificationListener(arg0: ObjectName, arg1: NotificationListener): void;
removeNotificationListener(arg0: ObjectName, arg1: NotificationListener, arg2: NotificationFilter, arg3: Object): void;
getMBeanInfo(arg0: ObjectName): MBeanInfo;
isInstanceOf(arg0: ObjectName, arg1: String): boolean;
instantiate(arg0: String): Object;
instantiate(arg0: String, arg1: ObjectName): Object;
instantiate(arg0: String, arg1: Object[], arg2: String[]): Object;
instantiate(arg0: String, arg1: ObjectName, arg2: Object[], arg3: String[]): Object;
/* default */ deserialize(arg0: ObjectName, arg1: number[]): ObjectInputStream;
/* default */ deserialize(arg0: String, arg1: number[]): ObjectInputStream;
/* default */ deserialize(arg0: String, arg1: ObjectName, arg2: number[]): ObjectInputStream;
getClassLoaderFor(arg0: ObjectName): ClassLoader;
getClassLoader(arg0: ObjectName): ClassLoader;
getClassLoaderRepository(): ClassLoaderRepository;
}
export class MBeanServerBuilder {
constructor();
newMBeanServerDelegate(): MBeanServerDelegate;
newMBeanServer(arg0: String, arg1: MBeanServer, arg2: MBeanServerDelegate): MBeanServer;
}
export interface MBeanServerConnection {
createMBean(arg0: String, arg1: ObjectName): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: ObjectName): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: Object[], arg3: String[]): ObjectInstance;
createMBean(arg0: String, arg1: ObjectName, arg2: ObjectName, arg3: Object[], arg4: String[]): ObjectInstance;
unregisterMBean(arg0: ObjectName): void;
getObjectInstance(arg0: ObjectName): ObjectInstance;
queryMBeans(arg0: ObjectName, arg1: QueryExp): Set<ObjectInstance>;
queryNames(arg0: ObjectName, arg1: QueryExp): Set<ObjectName>;
isRegistered(arg0: ObjectName): boolean;
getMBeanCount(): Number;
getAttribute(arg0: ObjectName, arg1: String): Object;
getAttributes(arg0: ObjectName, arg1: String[]): AttributeList;
setAttribute(arg0: ObjectName, arg1: Attribute): void;
setAttributes(arg0: ObjectName, arg1: AttributeList): AttributeList;
invoke(arg0: ObjectName, arg1: String, arg2: Object[], arg3: String[]): Object;
getDefaultDomain(): String;
getDomains(): String[];
addNotificationListener(arg0: ObjectName, arg1: NotificationListener, arg2: NotificationFilter, arg3: Object): void;
addNotificationListener(arg0: ObjectName, arg1: ObjectName, arg2: NotificationFilter, arg3: Object): void;
removeNotificationListener(arg0: ObjectName, arg1: ObjectName): void;
removeNotificationListener(arg0: ObjectName, arg1: ObjectName, arg2: NotificationFilter, arg3: Object): void;
removeNotificationListener(arg0: ObjectName, arg1: NotificationListener): void;
removeNotificationListener(arg0: ObjectName, arg1: NotificationListener, arg2: NotificationFilter, arg3: Object): void;
getMBeanInfo(arg0: ObjectName): MBeanInfo;
isInstanceOf(arg0: ObjectName, arg1: String): boolean;
}
export class MBeanServerDelegate implements MBeanServerDelegateMBean, NotificationEmitter {
static DELEGATE_NAME:ObjectName
constructor();
getMBeanServerId(): String;
getSpecificationName(): String;
getSpecificationVersion(): String;
getSpecificationVendor(): String;
getImplementationName(): String;
getImplementationVersion(): String;
getImplementationVendor(): String;
getNotificationInfo(): MBeanNotificationInfo[];
addNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
removeNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
removeNotificationListener(arg0: NotificationListener): void;
sendNotification(arg0: Notification): void;
}
export interface MBeanServerDelegateMBean {
getMBeanServerId(): String;
getSpecificationName(): String;
getSpecificationVersion(): String;
getSpecificationVendor(): String;
getImplementationName(): String;
getImplementationVersion(): String;
getImplementationVendor(): String;
}
export class MBeanServerFactory {
static releaseMBeanServer(arg0: MBeanServer): void;
static createMBeanServer(): MBeanServer;
static createMBeanServer(arg0: String): MBeanServer;
static newMBeanServer(): MBeanServer;
static newMBeanServer(arg0: String): MBeanServer;
static findMBeanServer(arg0: String): ArrayList<MBeanServer>;
static getClassLoaderRepository(arg0: MBeanServer): ClassLoaderRepository;
}
export class MBeanServerInvocationHandler implements InvocationHandler {
constructor(arg0: MBeanServerConnection, arg1: ObjectName);
constructor(arg0: MBeanServerConnection, arg1: ObjectName, arg2: boolean);
getMBeanServerConnection(): MBeanServerConnection;
getObjectName(): ObjectName;
isMXBean(): boolean;
static newProxyInstance<T extends Object>(arg0: MBeanServerConnection, arg1: ObjectName, arg2: Class<T>, arg3: boolean): T;
invoke(arg0: Object, arg1: Method, arg2: Object[]): Object;
}
export class MBeanServerNotification extends Notification {
static REGISTRATION_NOTIFICATION:String
static UNREGISTRATION_NOTIFICATION:String
constructor(arg0: String, arg1: Object, arg2: number, arg3: ObjectName);
getMBeanName(): ObjectName;
toString(): string;
}
export class MBeanServerPermission extends BasicPermission {
constructor(arg0: String);
constructor(arg0: String, arg1: String);
hashCode(): number;
implies(arg0: Permission): boolean;
equals(arg0: Object): boolean;
newPermissionCollection(): PermissionCollection;
}
export class MBeanTrustPermission extends BasicPermission {
constructor(arg0: String);
constructor(arg0: String, arg1: String);
}
export class MalformedObjectNameException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class NotCompliantMBeanException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class Notification extends EventObject {
constructor(arg0: String, arg1: Object, arg2: number);
constructor(arg0: String, arg1: Object, arg2: number, arg3: String);
constructor(arg0: String, arg1: Object, arg2: number, arg3: number);
constructor(arg0: String, arg1: Object, arg2: number, arg3: number, arg4: String);
setSource(arg0: Object): void;
getSequenceNumber(): number;
setSequenceNumber(arg0: number): void;
getType(): String;
getTimeStamp(): number;
setTimeStamp(arg0: number): void;
getMessage(): String;
getUserData(): Object;
setUserData(arg0: Object): void;
toString(): string;
}
export interface NotificationBroadcaster {
addNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
removeNotificationListener(arg0: NotificationListener): void;
getNotificationInfo(): MBeanNotificationInfo[];
}
export class NotificationBroadcasterSupport implements NotificationEmitter {
constructor();
constructor(arg0: Executor);
constructor(arg0: MBeanNotificationInfo[]);
constructor(arg0: Executor, arg1: MBeanNotificationInfo[]);
addNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
removeNotificationListener(arg0: NotificationListener): void;
removeNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
getNotificationInfo(): MBeanNotificationInfo[];
sendNotification(arg0: Notification): void;
}
export interface NotificationEmitter extends NotificationBroadcaster {
removeNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
}
export interface NotificationFilter extends Serializable {
isNotificationEnabled(arg0: Notification): boolean;
}
export class NotificationFilterSupport implements NotificationFilter {
constructor();
isNotificationEnabled(arg0: Notification): boolean;
enableType(arg0: String): void;
disableType(arg0: String): void;
disableAllTypes(): void;
getEnabledTypes(): Vector<String>;
}
export interface NotificationListener extends EventListener {
handleNotification(arg0: Notification, arg1: Object): void;
}
export class ObjectInstance implements Serializable {
constructor(arg0: String, arg1: String);
constructor(arg0: ObjectName, arg1: String);
equals(arg0: Object): boolean;
hashCode(): number;
getObjectName(): ObjectName;
getClassName(): String;
toString(): string;
}
export class ObjectName extends Object implements Comparable<ObjectName>, QueryExp {
static WILDCARD:ObjectName
constructor(arg0: String);
constructor(arg0: String, arg1: String, arg2: String);
constructor(arg0: String, arg1: Hashtable<String, String>);
static getInstance(arg0: String): ObjectName;
static getInstance(arg0: String, arg1: String, arg2: String): ObjectName;
static getInstance(arg0: String, arg1: Hashtable<String, String>): ObjectName;
static getInstance(arg0: ObjectName): ObjectName;
isPattern(): boolean;
isDomainPattern(): boolean;
isPropertyPattern(): boolean;
isPropertyListPattern(): boolean;
isPropertyValuePattern(): boolean;
isPropertyValuePattern(arg0: String): boolean;
getCanonicalName(): String;
getDomain(): String;
getKeyProperty(arg0: String): String;
getKeyPropertyList(): Hashtable<String, String>;
getKeyPropertyListString(): String;
getCanonicalKeyPropertyListString(): String;
toString(): string;
equals(arg0: Object): boolean;
hashCode(): number;
static quote(arg0: String): String;
static unquote(arg0: String): String;
apply(arg0: ObjectName): boolean;
setMBeanServer(arg0: MBeanServer): void;
compareTo(arg0: ObjectName): number;
}
export class OperationsException extends JMException {
constructor();
constructor(arg0: String);
}
export interface PersistentMBean {
load(): void;
store(): void;
}
export class Query {
static GT:number
static LT:number
static GE:number
static LE:number
static EQ:number
static PLUS:number
static MINUS:number
static TIMES:number
static DIV:number
constructor();
static and(arg0: QueryExp, arg1: QueryExp): QueryExp;
static or(arg0: QueryExp, arg1: QueryExp): QueryExp;
static gt(arg0: ValueExp, arg1: ValueExp): QueryExp;
static geq(arg0: ValueExp, arg1: ValueExp): QueryExp;
static leq(arg0: ValueExp, arg1: ValueExp): QueryExp;
static lt(arg0: ValueExp, arg1: ValueExp): QueryExp;
static eq(arg0: ValueExp, arg1: ValueExp): QueryExp;
static between(arg0: ValueExp, arg1: ValueExp, arg2: ValueExp): QueryExp;
static match(arg0: AttributeValueExp, arg1: StringValueExp): QueryExp;
static attr(arg0: String): AttributeValueExp;
static attr(arg0: String, arg1: String): AttributeValueExp;
static classattr(): AttributeValueExp;
static not(arg0: QueryExp): QueryExp;
static in(arg0: ValueExp, arg1: ValueExp[]): QueryExp;
static value(arg0: String): StringValueExp;
static value(arg0: Number): ValueExp;
static value(arg0: number): ValueExp;
static value(arg0: number): ValueExp;
static value(arg0: number): ValueExp;
static value(arg0: number): ValueExp;
static value(arg0: boolean): ValueExp;
static plus(arg0: ValueExp, arg1: ValueExp): ValueExp;
static times(arg0: ValueExp, arg1: ValueExp): ValueExp;
static minus(arg0: ValueExp, arg1: ValueExp): ValueExp;
static div(arg0: ValueExp, arg1: ValueExp): ValueExp;
static initialSubString(arg0: AttributeValueExp, arg1: StringValueExp): QueryExp;
static anySubString(arg0: AttributeValueExp, arg1: StringValueExp): QueryExp;
static finalSubString(arg0: AttributeValueExp, arg1: StringValueExp): QueryExp;
static isInstanceOf(arg0: StringValueExp): QueryExp;
}
export abstract class QueryEval implements Serializable {
constructor();
setMBeanServer(arg0: MBeanServer): void;
static getMBeanServer(): MBeanServer;
}
export interface QueryExp extends Serializable {
apply(arg0: ObjectName): boolean;
setMBeanServer(arg0: MBeanServer): void;
}
export class ReflectionException extends JMException {
constructor(arg0: Exception);
constructor(arg0: Exception, arg1: String);
getTargetException(): Exception;
getCause(): Throwable;
}
export class RuntimeErrorException extends JMRuntimeException {
constructor(arg0: Error);
constructor(arg0: Error, arg1: String);
getTargetError(): Error;
getCause(): Throwable;
}
export class RuntimeMBeanException extends JMRuntimeException {
constructor(arg0: RuntimeException);
constructor(arg0: RuntimeException, arg1: String);
getTargetException(): RuntimeException;
getCause(): Throwable;
}
export class RuntimeOperationsException extends JMRuntimeException {
constructor(arg0: RuntimeException);
constructor(arg0: RuntimeException, arg1: String);
getTargetException(): RuntimeException;
getCause(): Throwable;
}
export class ServiceNotFoundException extends OperationsException {
constructor();
constructor(arg0: String);
}
export class StandardEmitterMBean extends StandardMBean implements NotificationEmitter {
constructor(arg0: T, arg1: Class<T>, arg2: NotificationEmitter);
constructor(arg0: T, arg1: Class<T>, arg2: boolean, arg3: NotificationEmitter);
removeNotificationListener(arg0: NotificationListener): void;
removeNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
addNotificationListener(arg0: NotificationListener, arg1: NotificationFilter, arg2: Object): void;
getNotificationInfo(): MBeanNotificationInfo[];
sendNotification(arg0: Notification): void;
}
export class StandardMBean implements DynamicMBean, MBeanRegistration {
constructor(arg0: T, arg1: Class<T>);
constructor(arg0: T, arg1: Class<T>, arg2: boolean);
setImplementation(arg0: Object): void;
getImplementation(): Object;