forked from AnythingLinux/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmazonEC2CallbackHandler.java
More file actions
2076 lines (1779 loc) · 78.7 KB
/
AmazonEC2CallbackHandler.java
File metadata and controls
2076 lines (1779 loc) · 78.7 KB
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
/**
* AmazonEC2CallbackHandler.java
*
* This file was auto-generated from WSDL
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
*/
package com.amazon.ec2.client;
/**
* AmazonEC2CallbackHandler Callback class, Users can extend this class and implement
* their own receiveResult and receiveError methods.
*/
public abstract class AmazonEC2CallbackHandler {
protected Object clientData;
/**
* User can pass in any object that needs to be accessed once the NonBlocking
* Web service call is finished and appropriate method of this CallBack is called.
* @param clientData Object mechanism by which the user can pass in user data
* that will be avilable at the time this callback is called.
*/
public AmazonEC2CallbackHandler(Object clientData) {
this.clientData = clientData;
}
/**
* Please use this constructor if you don't want to set any clientData
*/
public AmazonEC2CallbackHandler() {
clientData = null;
}
/**
* Get the client data
*/
public Object getClientData() {
return clientData;
}
/**
* auto generated Axis2 call back method for describePlacementGroups method
* override this method for handling normal response from describePlacementGroups operation
*/
public void receiveResultdescribePlacementGroups(com.amazon.ec2.client.AmazonEC2Stub.DescribePlacementGroupsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describePlacementGroups operation
*/
public void receiveErrordescribePlacementGroups(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createSecurityGroup method
* override this method for handling normal response from createSecurityGroup operation
*/
public void receiveResultcreateSecurityGroup(com.amazon.ec2.client.AmazonEC2Stub.CreateSecurityGroupResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createSecurityGroup operation
*/
public void receiveErrorcreateSecurityGroup(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for resetNetworkInterfaceAttribute method
* override this method for handling normal response from resetNetworkInterfaceAttribute operation
*/
public void receiveResultresetNetworkInterfaceAttribute(com.amazon.ec2.client.AmazonEC2Stub.ResetNetworkInterfaceAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from resetNetworkInterfaceAttribute operation
*/
public void receiveErrorresetNetworkInterfaceAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createDhcpOptions method
* override this method for handling normal response from createDhcpOptions operation
*/
public void receiveResultcreateDhcpOptions(com.amazon.ec2.client.AmazonEC2Stub.CreateDhcpOptionsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createDhcpOptions operation
*/
public void receiveErrorcreateDhcpOptions(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createRouteTable method
* override this method for handling normal response from createRouteTable operation
*/
public void receiveResultcreateRouteTable(com.amazon.ec2.client.AmazonEC2Stub.CreateRouteTableResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createRouteTable operation
*/
public void receiveErrorcreateRouteTable(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeSubnets method
* override this method for handling normal response from describeSubnets operation
*/
public void receiveResultdescribeSubnets(com.amazon.ec2.client.AmazonEC2Stub.DescribeSubnetsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeSubnets operation
*/
public void receiveErrordescribeSubnets(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deactivateLicense method
* override this method for handling normal response from deactivateLicense operation
*/
public void receiveResultdeactivateLicense(com.amazon.ec2.client.AmazonEC2Stub.DeactivateLicenseResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deactivateLicense operation
*/
public void receiveErrordeactivateLicense(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteVpc method
* override this method for handling normal response from deleteVpc operation
*/
public void receiveResultdeleteVpc(com.amazon.ec2.client.AmazonEC2Stub.DeleteVpcResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteVpc operation
*/
public void receiveErrordeleteVpc(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for cancelSpotInstanceRequests method
* override this method for handling normal response from cancelSpotInstanceRequests operation
*/
public void receiveResultcancelSpotInstanceRequests(com.amazon.ec2.client.AmazonEC2Stub.CancelSpotInstanceRequestsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from cancelSpotInstanceRequests operation
*/
public void receiveErrorcancelSpotInstanceRequests(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createSubnet method
* override this method for handling normal response from createSubnet operation
*/
public void receiveResultcreateSubnet(com.amazon.ec2.client.AmazonEC2Stub.CreateSubnetResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createSubnet operation
*/
public void receiveErrorcreateSubnet(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteVpnGateway method
* override this method for handling normal response from deleteVpnGateway operation
*/
public void receiveResultdeleteVpnGateway(com.amazon.ec2.client.AmazonEC2Stub.DeleteVpnGatewayResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteVpnGateway operation
*/
public void receiveErrordeleteVpnGateway(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createNetworkAclEntry method
* override this method for handling normal response from createNetworkAclEntry operation
*/
public void receiveResultcreateNetworkAclEntry(com.amazon.ec2.client.AmazonEC2Stub.CreateNetworkAclEntryResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createNetworkAclEntry operation
*/
public void receiveErrorcreateNetworkAclEntry(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for requestSpotInstances method
* override this method for handling normal response from requestSpotInstances operation
*/
public void receiveResultrequestSpotInstances(com.amazon.ec2.client.AmazonEC2Stub.RequestSpotInstancesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from requestSpotInstances operation
*/
public void receiveErrorrequestSpotInstances(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeVolumeAttribute method
* override this method for handling normal response from describeVolumeAttribute operation
*/
public void receiveResultdescribeVolumeAttribute(com.amazon.ec2.client.AmazonEC2Stub.DescribeVolumeAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeVolumeAttribute operation
*/
public void receiveErrordescribeVolumeAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for associateDhcpOptions method
* override this method for handling normal response from associateDhcpOptions operation
*/
public void receiveResultassociateDhcpOptions(com.amazon.ec2.client.AmazonEC2Stub.AssociateDhcpOptionsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from associateDhcpOptions operation
*/
public void receiveErrorassociateDhcpOptions(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeTags method
* override this method for handling normal response from describeTags operation
*/
public void receiveResultdescribeTags(com.amazon.ec2.client.AmazonEC2Stub.DescribeTagsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeTags operation
*/
public void receiveErrordescribeTags(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for importKeyPair method
* override this method for handling normal response from importKeyPair operation
*/
public void receiveResultimportKeyPair(com.amazon.ec2.client.AmazonEC2Stub.ImportKeyPairResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from importKeyPair operation
*/
public void receiveErrorimportKeyPair(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteNetworkInterface method
* override this method for handling normal response from deleteNetworkInterface operation
*/
public void receiveResultdeleteNetworkInterface(com.amazon.ec2.client.AmazonEC2Stub.DeleteNetworkInterfaceResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteNetworkInterface operation
*/
public void receiveErrordeleteNetworkInterface(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeVpcs method
* override this method for handling normal response from describeVpcs operation
*/
public void receiveResultdescribeVpcs(com.amazon.ec2.client.AmazonEC2Stub.DescribeVpcsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeVpcs operation
*/
public void receiveErrordescribeVpcs(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeLicenses method
* override this method for handling normal response from describeLicenses operation
*/
public void receiveResultdescribeLicenses(com.amazon.ec2.client.AmazonEC2Stub.DescribeLicensesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeLicenses operation
*/
public void receiveErrordescribeLicenses(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for bundleInstance method
* override this method for handling normal response from bundleInstance operation
*/
public void receiveResultbundleInstance(com.amazon.ec2.client.AmazonEC2Stub.BundleInstanceResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from bundleInstance operation
*/
public void receiveErrorbundleInstance(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeVpnConnections method
* override this method for handling normal response from describeVpnConnections operation
*/
public void receiveResultdescribeVpnConnections(com.amazon.ec2.client.AmazonEC2Stub.DescribeVpnConnectionsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeVpnConnections operation
*/
public void receiveErrordescribeVpnConnections(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeImages method
* override this method for handling normal response from describeImages operation
*/
public void receiveResultdescribeImages(com.amazon.ec2.client.AmazonEC2Stub.DescribeImagesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeImages operation
*/
public void receiveErrordescribeImages(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createInternetGateway method
* override this method for handling normal response from createInternetGateway operation
*/
public void receiveResultcreateInternetGateway(com.amazon.ec2.client.AmazonEC2Stub.CreateInternetGatewayResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createInternetGateway operation
*/
public void receiveErrorcreateInternetGateway(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for disassociateRouteTable method
* override this method for handling normal response from disassociateRouteTable operation
*/
public void receiveResultdisassociateRouteTable(com.amazon.ec2.client.AmazonEC2Stub.DisassociateRouteTableResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from disassociateRouteTable operation
*/
public void receiveErrordisassociateRouteTable(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for replaceNetworkAclEntry method
* override this method for handling normal response from replaceNetworkAclEntry operation
*/
public void receiveResultreplaceNetworkAclEntry(com.amazon.ec2.client.AmazonEC2Stub.ReplaceNetworkAclEntryResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from replaceNetworkAclEntry operation
*/
public void receiveErrorreplaceNetworkAclEntry(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for authorizeSecurityGroupIngress method
* override this method for handling normal response from authorizeSecurityGroupIngress operation
*/
public void receiveResultauthorizeSecurityGroupIngress(com.amazon.ec2.client.AmazonEC2Stub.AuthorizeSecurityGroupIngressResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from authorizeSecurityGroupIngress operation
*/
public void receiveErrorauthorizeSecurityGroupIngress(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeSnapshotAttribute method
* override this method for handling normal response from describeSnapshotAttribute operation
*/
public void receiveResultdescribeSnapshotAttribute(com.amazon.ec2.client.AmazonEC2Stub.DescribeSnapshotAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeSnapshotAttribute operation
*/
public void receiveErrordescribeSnapshotAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createVpnGateway method
* override this method for handling normal response from createVpnGateway operation
*/
public void receiveResultcreateVpnGateway(com.amazon.ec2.client.AmazonEC2Stub.CreateVpnGatewayResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createVpnGateway operation
*/
public void receiveErrorcreateVpnGateway(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for resetInstanceAttribute method
* override this method for handling normal response from resetInstanceAttribute operation
*/
public void receiveResultresetInstanceAttribute(com.amazon.ec2.client.AmazonEC2Stub.ResetInstanceAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from resetInstanceAttribute operation
*/
public void receiveErrorresetInstanceAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createTags method
* override this method for handling normal response from createTags operation
*/
public void receiveResultcreateTags(com.amazon.ec2.client.AmazonEC2Stub.CreateTagsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createTags operation
*/
public void receiveErrorcreateTags(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for authorizeSecurityGroupEgress method
* override this method for handling normal response from authorizeSecurityGroupEgress operation
*/
public void receiveResultauthorizeSecurityGroupEgress(com.amazon.ec2.client.AmazonEC2Stub.AuthorizeSecurityGroupEgressResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from authorizeSecurityGroupEgress operation
*/
public void receiveErrorauthorizeSecurityGroupEgress(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for associateAddress method
* override this method for handling normal response from associateAddress operation
*/
public void receiveResultassociateAddress(com.amazon.ec2.client.AmazonEC2Stub.AssociateAddressResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from associateAddress operation
*/
public void receiveErrorassociateAddress(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeImageAttribute method
* override this method for handling normal response from describeImageAttribute operation
*/
public void receiveResultdescribeImageAttribute(com.amazon.ec2.client.AmazonEC2Stub.DescribeImageAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeImageAttribute operation
*/
public void receiveErrordescribeImageAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeSpotPriceHistory method
* override this method for handling normal response from describeSpotPriceHistory operation
*/
public void receiveResultdescribeSpotPriceHistory(com.amazon.ec2.client.AmazonEC2Stub.DescribeSpotPriceHistoryResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeSpotPriceHistory operation
*/
public void receiveErrordescribeSpotPriceHistory(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for modifySnapshotAttribute method
* override this method for handling normal response from modifySnapshotAttribute operation
*/
public void receiveResultmodifySnapshotAttribute(com.amazon.ec2.client.AmazonEC2Stub.ModifySnapshotAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from modifySnapshotAttribute operation
*/
public void receiveErrormodifySnapshotAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeSpotInstanceRequests method
* override this method for handling normal response from describeSpotInstanceRequests operation
*/
public void receiveResultdescribeSpotInstanceRequests(com.amazon.ec2.client.AmazonEC2Stub.DescribeSpotInstanceRequestsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeSpotInstanceRequests operation
*/
public void receiveErrordescribeSpotInstanceRequests(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for importInstance method
* override this method for handling normal response from importInstance operation
*/
public void receiveResultimportInstance(com.amazon.ec2.client.AmazonEC2Stub.ImportInstanceResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from importInstance operation
*/
public void receiveErrorimportInstance(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeKeyPairs method
* override this method for handling normal response from describeKeyPairs operation
*/
public void receiveResultdescribeKeyPairs(com.amazon.ec2.client.AmazonEC2Stub.DescribeKeyPairsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeKeyPairs operation
*/
public void receiveErrordescribeKeyPairs(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for revokeSecurityGroupIngress method
* override this method for handling normal response from revokeSecurityGroupIngress operation
*/
public void receiveResultrevokeSecurityGroupIngress(com.amazon.ec2.client.AmazonEC2Stub.RevokeSecurityGroupIngressResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from revokeSecurityGroupIngress operation
*/
public void receiveErrorrevokeSecurityGroupIngress(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createPlacementGroup method
* override this method for handling normal response from createPlacementGroup operation
*/
public void receiveResultcreatePlacementGroup(com.amazon.ec2.client.AmazonEC2Stub.CreatePlacementGroupResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createPlacementGroup operation
*/
public void receiveErrorcreatePlacementGroup(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteNetworkAclEntry method
* override this method for handling normal response from deleteNetworkAclEntry operation
*/
public void receiveResultdeleteNetworkAclEntry(com.amazon.ec2.client.AmazonEC2Stub.DeleteNetworkAclEntryResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteNetworkAclEntry operation
*/
public void receiveErrordeleteNetworkAclEntry(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for activateLicense method
* override this method for handling normal response from activateLicense operation
*/
public void receiveResultactivateLicense(com.amazon.ec2.client.AmazonEC2Stub.ActivateLicenseResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from activateLicense operation
*/
public void receiveErroractivateLicense(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteRouteTable method
* override this method for handling normal response from deleteRouteTable operation
*/
public void receiveResultdeleteRouteTable(com.amazon.ec2.client.AmazonEC2Stub.DeleteRouteTableResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteRouteTable operation
*/
public void receiveErrordeleteRouteTable(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for unmonitorInstances method
* override this method for handling normal response from unmonitorInstances operation
*/
public void receiveResultunmonitorInstances(com.amazon.ec2.client.AmazonEC2Stub.UnmonitorInstancesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from unmonitorInstances operation
*/
public void receiveErrorunmonitorInstances(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for startInstances method
* override this method for handling normal response from startInstances operation
*/
public void receiveResultstartInstances(com.amazon.ec2.client.AmazonEC2Stub.StartInstancesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from startInstances operation
*/
public void receiveErrorstartInstances(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for confirmProductInstance method
* override this method for handling normal response from confirmProductInstance operation
*/
public void receiveResultconfirmProductInstance(com.amazon.ec2.client.AmazonEC2Stub.ConfirmProductInstanceResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from confirmProductInstance operation
*/
public void receiveErrorconfirmProductInstance(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeNetworkInterfaceAttribute method
* override this method for handling normal response from describeNetworkInterfaceAttribute operation
*/
public void receiveResultdescribeNetworkInterfaceAttribute(com.amazon.ec2.client.AmazonEC2Stub.DescribeNetworkInterfaceAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeNetworkInterfaceAttribute operation
*/
public void receiveErrordescribeNetworkInterfaceAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for runInstances method
* override this method for handling normal response from runInstances operation
*/
public void receiveResultrunInstances(com.amazon.ec2.client.AmazonEC2Stub.RunInstancesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from runInstances operation
*/
public void receiveErrorrunInstances(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createReservedInstancesListing method
* override this method for handling normal response from createReservedInstancesListing operation
*/
public void receiveResultcreateReservedInstancesListing(com.amazon.ec2.client.AmazonEC2Stub.CreateReservedInstancesListingResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createReservedInstancesListing operation
*/
public void receiveErrorcreateReservedInstancesListing(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createCustomerGateway method
* override this method for handling normal response from createCustomerGateway operation
*/
public void receiveResultcreateCustomerGateway(com.amazon.ec2.client.AmazonEC2Stub.CreateCustomerGatewayResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createCustomerGateway operation
*/
public void receiveErrorcreateCustomerGateway(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createNetworkAcl method
* override this method for handling normal response from createNetworkAcl operation
*/
public void receiveResultcreateNetworkAcl(com.amazon.ec2.client.AmazonEC2Stub.CreateNetworkAclResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createNetworkAcl operation
*/
public void receiveErrorcreateNetworkAcl(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for resetImageAttribute method
* override this method for handling normal response from resetImageAttribute operation
*/
public void receiveResultresetImageAttribute(com.amazon.ec2.client.AmazonEC2Stub.ResetImageAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from resetImageAttribute operation
*/
public void receiveErrorresetImageAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for modifyVolumeAttribute method
* override this method for handling normal response from modifyVolumeAttribute operation
*/
public void receiveResultmodifyVolumeAttribute(com.amazon.ec2.client.AmazonEC2Stub.ModifyVolumeAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from modifyVolumeAttribute operation
*/
public void receiveErrormodifyVolumeAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeReservedInstances method
* override this method for handling normal response from describeReservedInstances operation
*/
public void receiveResultdescribeReservedInstances(com.amazon.ec2.client.AmazonEC2Stub.DescribeReservedInstancesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeReservedInstances operation
*/
public void receiveErrordescribeReservedInstances(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for resetSnapshotAttribute method
* override this method for handling normal response from resetSnapshotAttribute operation
*/
public void receiveResultresetSnapshotAttribute(com.amazon.ec2.client.AmazonEC2Stub.ResetSnapshotAttributeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from resetSnapshotAttribute operation
*/
public void receiveErrorresetSnapshotAttribute(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteVolume method
* override this method for handling normal response from deleteVolume operation
*/
public void receiveResultdeleteVolume(com.amazon.ec2.client.AmazonEC2Stub.DeleteVolumeResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteVolume operation
*/
public void receiveErrordeleteVolume(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeAvailabilityZones method
* override this method for handling normal response from describeAvailabilityZones operation
*/
public void receiveResultdescribeAvailabilityZones(com.amazon.ec2.client.AmazonEC2Stub.DescribeAvailabilityZonesResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeAvailabilityZones operation
*/
public void receiveErrordescribeAvailabilityZones(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createVpnConnection method
* override this method for handling normal response from createVpnConnection operation
*/
public void receiveResultcreateVpnConnection(com.amazon.ec2.client.AmazonEC2Stub.CreateVpnConnectionResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createVpnConnection operation
*/
public void receiveErrorcreateVpnConnection(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for cancelBundleTask method
* override this method for handling normal response from cancelBundleTask operation
*/
public void receiveResultcancelBundleTask(com.amazon.ec2.client.AmazonEC2Stub.CancelBundleTaskResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from cancelBundleTask operation
*/
public void receiveErrorcancelBundleTask(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for replaceNetworkAclAssociation method
* override this method for handling normal response from replaceNetworkAclAssociation operation
*/
public void receiveResultreplaceNetworkAclAssociation(com.amazon.ec2.client.AmazonEC2Stub.ReplaceNetworkAclAssociationResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from replaceNetworkAclAssociation operation
*/
public void receiveErrorreplaceNetworkAclAssociation(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for detachVpnGateway method
* override this method for handling normal response from detachVpnGateway operation
*/
public void receiveResultdetachVpnGateway(com.amazon.ec2.client.AmazonEC2Stub.DetachVpnGatewayResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from detachVpnGateway operation
*/
public void receiveErrordetachVpnGateway(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeSnapshots method
* override this method for handling normal response from describeSnapshots operation
*/
public void receiveResultdescribeSnapshots(com.amazon.ec2.client.AmazonEC2Stub.DescribeSnapshotsResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeSnapshots operation
*/
public void receiveErrordescribeSnapshots(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for deleteSubnet method
* override this method for handling normal response from deleteSubnet operation
*/
public void receiveResultdeleteSubnet(com.amazon.ec2.client.AmazonEC2Stub.DeleteSubnetResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from deleteSubnet operation
*/
public void receiveErrordeleteSubnet(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for describeBundleTasks method
* override this method for handling normal response from describeBundleTasks operation
*/
public void receiveResultdescribeBundleTasks(com.amazon.ec2.client.AmazonEC2Stub.DescribeBundleTasksResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from describeBundleTasks operation
*/
public void receiveErrordescribeBundleTasks(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createKeyPair method
* override this method for handling normal response from createKeyPair operation
*/
public void receiveResultcreateKeyPair(com.amazon.ec2.client.AmazonEC2Stub.CreateKeyPairResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createKeyPair operation
*/
public void receiveErrorcreateKeyPair(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for createImage method
* override this method for handling normal response from createImage operation
*/
public void receiveResultcreateImage(com.amazon.ec2.client.AmazonEC2Stub.CreateImageResponse result) {
}
/**
* auto generated Axis2 Error handler
* override this method for handling error response from createImage operation
*/
public void receiveErrorcreateImage(java.lang.Exception e) {
}
/**
* auto generated Axis2 call back method for enableVgwRoutePropagation method
* override this method for handling normal response from enableVgwRoutePropagation operation